We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e974361 commit 0a4dbb2Copy full SHA for 0a4dbb2
2 files changed
.github/workflows/ci.yml
@@ -28,6 +28,11 @@ jobs:
28
29
- name: Install dependencies
30
run: python -m pip install ".[lint, test]"
31
+
32
+ - name: Show test tool versions
33
+ run: |
34
+ python -c "import pytest; print('pytest', pytest.__version__)"
35
+ python -c "import pydocstyle; print('pydocstyle', pydocstyle.__version__)"
36
37
- name: Run tests
38
run: python -m pytest --pydocstyle
pyproject.toml
@@ -41,7 +41,7 @@ docs = [
41
]
42
43
test = [
44
- "pytest>=8.0",
+ "pytest>=7.4,<8",
45
"pytest-cov",
46
"pytest-emoji",
47
"pytest-pydocstyle>=0.0.7",
0 commit comments