We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2d8d8 commit a2f4ee8Copy full SHA for a2f4ee8
.github/workflows/ci.yml
@@ -29,6 +29,9 @@ jobs:
29
- name: Install package and test deps
30
run: python -m pip install -e ".[testing]"
31
32
+ - name: Ensure repo on PYTHONPATH for tests
33
+ run: echo "PYTHONPATH=$(pwd)" >> $GITHUB_ENV
34
+
35
- name: Run tests
36
run: pytest -q --cov=GabesPythonToolBox --cov-report=xml
37
- name: Upload coverage to artifact
pyproject.toml
@@ -13,14 +13,11 @@ requires-python = ">=3.8"
13
dependencies = [
14
"matplotlib>=3.10.6,<3.11",
15
"PyYAML>=6.0.2,<7.0",
16
- "GabrielsPythonToolBox",
17
- "pytest-cov",
18
- "pytest"
19
]
20
21
[project.optional-dependencies]
22
testing = [
23
- "pytest",
+ "pytest>=8.0",
24
"pytest-cov",
25
"coverage",
26
0 commit comments