Skip to content

Commit 9c397cd

Browse files
Merge pull request #352 from microsoft/psl-pk-ratelimit
fix: Test Workflow failure
2 parents a97e3d2 + 3d68c5f commit 9c397cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ jobs:
7474
- name: Install Backend Dependencies
7575
run: |
7676
python -m pip install --upgrade pip
77-
pip install -r src/App/requirements.txt
77+
pip install -r src/api/requirements.txt
7878
pip install pytest-cov
7979
pip install pytest-asyncio
8080
8181
- name: Check if Backend Test Files Exist
8282
id: check_backend_tests
8383
run: |
84-
if [ -z "$(find src/App/backend -type f -name 'test_*.py')" ]; then
84+
if [ -z "$(find src/api -type f -name 'test_*.py')" ]; then
8585
echo "No backend test files found, skipping backend tests."
8686
echo "skip_backend_tests=true" >> $GITHUB_ENV
8787
else

0 commit comments

Comments
 (0)