Skip to content

Commit 0a4dbb2

Browse files
committed
Add CI version tracking + update pyproject.toml
1 parent e974361 commit 0a4dbb2

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828

2929
- name: Install dependencies
3030
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__)"
3136
3237
- name: Run tests
3338
run: python -m pytest --pydocstyle

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ docs = [
4141
]
4242

4343
test = [
44-
"pytest>=8.0",
44+
"pytest>=7.4,<8",
4545
"pytest-cov",
4646
"pytest-emoji",
4747
"pytest-pydocstyle>=0.0.7",

0 commit comments

Comments
 (0)