We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baa00cf commit 3de07ddCopy full SHA for 3de07dd
.github/workflows/test.yml
@@ -22,7 +22,7 @@ jobs:
22
cache: pip
23
cache-dependency-path: pyproject.toml
24
- name: Install dependencies
25
- run: pip install -e .[test] coverage
+ run: pip install -e .[test]
26
- name: Test with pytest
27
run: coverage run -m pytest
28
- name: Upload Coverage
pyproject.toml
@@ -41,8 +41,8 @@ dynamic = ["version"]
41
42
[project.optional-dependencies]
43
test = [
44
- "pytest",
45
- "pytest-cov",
+ "pytest >= 7.4",
+ "coverage >= 7",
46
"psycopg2-binary",
47
"mysql-connector-python",
48
]
0 commit comments