Skip to content

Commit 530734f

Browse files
committed
Actions fix
1 parent 0e3fb75 commit 530734f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/test-coverage.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ on:
1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest
13-
env:
14-
PYTHONPATH: ${{ github.workspace }}
1513
steps:
1614
- name: Checkout code
1715
uses: actions/checkout@v4
@@ -28,8 +26,9 @@ jobs:
2826
pip install pytest pytest-cov
2927
3028
- name: Run tests with coverage
31-
run: |
32-
pytest --cov=src --cov-report=xml --cov-fail-under=80
29+
env:
30+
PYTHONPATH: ${{ github.workspace }}
31+
run: pytest --cov=src --cov-report=xml --cov-fail-under=80
3332

3433
- name: Upload coverage report
3534
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)