From 9351fbd3410477b0e03b0df69b89f3d836191290 Mon Sep 17 00:00:00 2001 From: anthonychen000 Date: Thu, 26 Feb 2026 14:55:26 -0500 Subject: [PATCH 1/2] Add empty src directory structure and update tests --- requirements.txt | 2 +- src/core/__init__.py | 0 src/ingestion/__init__.py | 0 src/mesh/__init__.py | 0 src/texture/__init__.py | 0 tests/mock_test.py | 4 ++-- 6 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 src/core/__init__.py create mode 100644 src/ingestion/__init__.py create mode 100644 src/mesh/__init__.py create mode 100644 src/texture/__init__.py diff --git a/requirements.txt b/requirements.txt index 6e31701..68fc11a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ ruff -pytest \ No newline at end of file +pytest diff --git a/src/core/__init__.py b/src/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/ingestion/__init__.py b/src/ingestion/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/mesh/__init__.py b/src/mesh/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/texture/__init__.py b/src/texture/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/mock_test.py b/tests/mock_test.py index bbca82c..bfe0b80 100644 --- a/tests/mock_test.py +++ b/tests/mock_test.py @@ -1,6 +1,6 @@ def test_placeholder(): """ - A temporary placeholder test to ensure the GitHub Actions CI pipeline + A temporary placeholder test to ensure the GitHub Actions CI pipeline runs successfully. Real pipeline tests will be added here later. """ - assert True + assert True \ No newline at end of file From 9536c3c573eff4fc851b3ffc1720702b64c655bc Mon Sep 17 00:00:00 2001 From: anthonychen000 Date: Thu, 26 Feb 2026 14:57:26 -0500 Subject: [PATCH 2/2] style: fix Ruff formatting in mock_test.py --- tests/mock_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mock_test.py b/tests/mock_test.py index bfe0b80..bbca82c 100644 --- a/tests/mock_test.py +++ b/tests/mock_test.py @@ -1,6 +1,6 @@ def test_placeholder(): """ - A temporary placeholder test to ensure the GitHub Actions CI pipeline + A temporary placeholder test to ensure the GitHub Actions CI pipeline runs successfully. Real pipeline tests will be added here later. """ - assert True \ No newline at end of file + assert True