Skip to content

Commit f0ad2ad

Browse files
authored
Update python-ci.yml
1 parent 5821671 commit f0ad2ad

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/python-ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,20 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14+
1415
- name: Set up Python
1516
uses: actions/setup-python@v5
1617
with:
1718
python-version: "3.11"
19+
1820
- name: Install deps
1921
run: |
2022
python -m pip install --upgrade pip
2123
pip install -r requirements.txt
22-
- name: Tests
23-
run: pytest -q
24+
25+
- name: Run tests
26+
env:
27+
PYTHONPATH: ${{ github.workspace }}
28+
run: |
29+
pytest -q
30+

0 commit comments

Comments
 (0)