We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a97e3d2 + 3d68c5f commit 9c397cdCopy full SHA for 9c397cd
.github/workflows/test.yml
@@ -74,14 +74,14 @@ jobs:
74
- name: Install Backend Dependencies
75
run: |
76
python -m pip install --upgrade pip
77
- pip install -r src/App/requirements.txt
+ pip install -r src/api/requirements.txt
78
pip install pytest-cov
79
pip install pytest-asyncio
80
81
- name: Check if Backend Test Files Exist
82
id: check_backend_tests
83
84
- if [ -z "$(find src/App/backend -type f -name 'test_*.py')" ]; then
+ if [ -z "$(find src/api -type f -name 'test_*.py')" ]; then
85
echo "No backend test files found, skipping backend tests."
86
echo "skip_backend_tests=true" >> $GITHUB_ENV
87
else
0 commit comments