Skip to content

Commit b081589

Browse files
committed
fix CI
- add tox-gh to dependency - remove the incompatible combination py37-pytest8
1 parent 5fc2f61 commit b081589

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ classifiers = [
3636
dependencies = ["pytest>=7.0,<9.0"]
3737

3838
[project.optional-dependencies]
39-
dev = ["hatch", "coverage[toml]", "black", "ruff", "tox"]
39+
dev = ["hatch", "coverage[toml]", "black", "ruff", "tox", "tox-gh"]
4040

4141
[project.urls]
4242
Issues = "https://github.com/pytest-dev/pytest-inline/issues"

tox.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[tox]
22
isolated_build = True
3-
requires = tox
4-
env_list = py{37,38,39,310}-pytest{7,8}
3+
requires = tox, tox-gh
4+
env_list =
5+
py37-pytest7
6+
py{38,39,310}-pytest{7,8}
57

68
[testenv]
79
deps =
@@ -12,7 +14,7 @@ commands =
1214

1315
[gh]
1416
python =
15-
3.7 = py37-pytest7, py37-pytest8
17+
3.7 = py37-pytest7
1618
3.8 = py38-pytest7, py38-pytest8
1719
3.9 = py39-pytest7, py39-pytest8
1820
3.10 = py310-pytest7, py310-pytest8

0 commit comments

Comments
 (0)