Skip to content

Commit

Permalink
Merge pull request #155 from rs-station/downgrade_pytest
Browse files Browse the repository at this point in the history
decrease maximum pytest version to v7
  • Loading branch information
kmdalton authored Mar 5, 2024
2 parents 45d7d46 + 6723bad commit 0d5e4a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
pip install "pytest<8"
- name: Test with pytest
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ def getVersionNumber():
]
},
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov", "pytest-xdist>=3"],
tests_require=["pytest<8", "pytest-cov", "pytest-xdist>=3"],
)

0 comments on commit 0d5e4a4

Please sign in to comment.