Skip to content

Commit 610b902

Browse files
fixed broken links
1 parent add2f0a commit 610b902

20 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- dev
88
paths:
99
- '**/*.py'
10-
- 'content-gen/src/backend/requirements*.txt'
10+
- 'src/backend/requirements*.txt'
1111
- '.github/workflows/test.yml'
1212
pull_request:
1313
types:
@@ -20,7 +20,7 @@ on:
2020
- dev
2121
paths:
2222
- '**/*.py'
23-
- 'content-gen/src/backend/requirements*.txt'
23+
- 'src/backend/requirements*.txt'
2424
- '.github/workflows/test.yml'
2525

2626
permissions:
@@ -43,14 +43,14 @@ jobs:
4343
- name: Install Backend Dependencies
4444
run: |
4545
python -m pip install --upgrade pip
46-
pip install -r content-gen/src/backend/requirements.txt
46+
pip install -r src/backend/requirements.txt
4747
pip install pytest-cov
4848
pip install pytest-asyncio
4949
5050
- name: Check if Backend Test Files Exist
5151
id: check_backend_tests
5252
run: |
53-
if [ -z "$(find content-gen/src/tests -type f -name 'test_*.py' 2>/dev/null)" ]; then
53+
if [ -z "$(find src/tests -type f -name 'test_*.py' 2>/dev/null)" ]; then
5454
echo "No backend test files found, skipping backend tests."
5555
echo "skip_backend_tests=true" >> $GITHUB_ENV
5656
else
@@ -61,7 +61,7 @@ jobs:
6161
- name: Run Backend Tests with Coverage
6262
if: env.skip_backend_tests == 'false'
6363
run: |
64-
pytest --cov=. --cov-report=term-missing --cov-report=xml ./content-gen/src/tests
64+
pytest --cov=. --cov-report=term-missing --cov-report=xml ./src/tests
6565
6666
- name: Skip Backend Tests
6767
if: env.skip_backend_tests == 'true'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)