Skip to content

Commit 2fbe94a

Browse files
committed
fix(python_tests.yaml): simplify requirements to only those needed for test + rename + correct pytest command
1 parent 5e33b6f commit 2fbe94a

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/python_tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737

3838
- name: Install requirements (Windows)
3939
if: runner.os == 'Windows'
40-
run: python -m pip install -r requirements.txt
40+
run: python -m pip install -r requirements-test.txt
4141

4242
- name: Install requirements (Unix)
4343
if: runner.os != 'Windows'
44-
run: pip install -r requirements.txt
44+
run: pip install -r requirements-test.txt
4545

46-
- name: Run tests (with coverage for Ubuntu 3.13)
47-
run: pytest
46+
- name: Run tests
47+
run: pytest examples/python_package
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
flake8==7.3.0
2-
lintquarto==0.7.0
31
numpy==2.4.1
42
pandas==2.3.3
53
pip==25.3
6-
pylint==4.0.4
74
pytest==9.0.2
85
pytest-cov==7.0.0
9-
python==3.12.12
106
scipy==1.17.0
117
-e examples/python_package/.

0 commit comments

Comments
 (0)