Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
Test PyTest 7.3 and 7.4 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ramosbugs committed Sep 10, 2023
1 parent cceab23 commit cd92dbb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ jobs:
- pytest70
- pytest71
- pytest72
- pytest73
- pytest74

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ for running `unittest` tests.
This plugin maintains compatibility with the PyTest and Python versions listed below:

![Python versions](https://img.shields.io/pypi/pyversions/pytest-unflakable)
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2-blue)
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2%20%7C%207.3%20%7C%207.4-blue)

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion src/pytest_unflakable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ for running `unittest` tests.
This plugin maintains compatibility with the PyTest and Python versions listed below:

![Python versions](https://img.shields.io/pypi/pyversions/pytest-unflakable)
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2-blue)
![PyTest versions](https://img.shields.io/badge/pytest-6.2%20%7C%207.0%20%7C%207.1%20%7C%207.2%20%7C%207.3%20%7C%207.4-blue)

## Contributing

Expand Down
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = pytest{62,70,71,72},flake8,mypy,pycodestyle
envlist = pytest{62,70,71,72,73,74},flake8,mypy,pycodestyle

[testenv]
extras = dev
Expand All @@ -26,6 +26,16 @@ deps =
pytest>=7.2.0,<7.3.0
pytest-xdist==2.5.0

[testenv:pytest73]
deps =
pytest>=7.3.0,<7.4.0
pytest-xdist==2.5.0

[testenv:pytest74]
deps =
pytest>=7.4.0,<7.5.0
pytest-xdist==2.5.0

[testenv:flake8]
commands = flake8 src tests

Expand Down

0 comments on commit cd92dbb

Please sign in to comment.