Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,6 @@ jobs:
PYTEST_MAJOR_VERSION: 7
PYTEST_PLUGINS: pytest_github_actions_annotate_failures

- name: Run tests with PyTest 6
run: tox
if: runner.os != 'Windows'
env:
PYTEST_MAJOR_VERSION: 6
PYTEST_PLUGINS: pytest_github_actions_annotate_failures

post-test:
name: All tests passed
if: always()
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

Nothing yet.
- Require pytest 7+ #116

## 0.3.0 (2025-01-17)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ classifiers = [
]
keywords = ["ansible", "testing", "molecule", "plugin"]
dependencies = [
"pytest>=6.0.0"
"pytest>=7.0.0"
]

[project.urls]
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310,311,312,313}-pytest{6,7,8}
py{38,39,310,311,312,313}-pytest{7,8}

[gh-actions]
python =
Expand All @@ -13,15 +13,13 @@ python =

[gh-actions:env]
PYTEST_MAJOR_VERSION =
6: pytest6
7: pytest7
8: pytest8

[testenv]
min_version = 4.22.0
groups = test
deps =
pytest6: pytest>=6.0.0,<7.0.0
pytest7: pytest>=7.0.0,<8.0.0
pytest8: pytest>=8.0.0,<9.0.0

Expand Down