From 1f4bf3219b35b1b303d59fd65d27c4c090229568 Mon Sep 17 00:00:00 2001 From: Maximilian Eibl Date: Fri, 4 Sep 2026 15:56:50 +0200 Subject: [PATCH] Update CI workflow with compilation/ and tests/ paths --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4e7a6a7..8be35f8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -24,11 +24,11 @@ jobs: apt-get install -y python3 python3-pip python3-venv curl fi python3 -m pip install --upgrade pip --break-system-packages || python3 -m pip install --upgrade pip || true - pip3 install -r requirements.txt --break-system-packages || pip3 install -r requirements.txt + pip3 install -r compilation/requirements.txt --break-system-packages || pip3 install -r compilation/requirements.txt - name: Verify Python Syntax run: | - python3 -m py_compile src/Server.py src/Win_Client.py src/Linux_Client.py package_dist.py upload_release.py test_pipeline.py tests/*.py + python3 -m py_compile src/Server.py src/Win_Client.py src/Linux_Client.py compilation/package_dist.py compilation/upload_release.py tests/test_pipeline.py tests/*.py - name: Run Component Unit Tests run: | @@ -65,7 +65,7 @@ jobs: fi # 4. Execute end-to-end integration test - python3 test_pipeline.py + python3 tests/test_pipeline.py # 5. Cleanly terminate background server kill $SERVER_PID || true