Skip to content

Commit 5fc2f61

Browse files
committed
fix CI
- set fail-fast to false (always run on all python versions despite if some of them are failing) - remove tox's version constrain >=4.19
1 parent f1bde2f commit 5fc2f61

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
build-linux:
1010
runs-on: ubuntu-latest
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
python-version: ['3.7', '3.8', '3.9', '3.10']
1415

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>=4.19"]
39+
dev = ["hatch", "coverage[toml]", "black", "ruff", "tox"]
4040

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

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
isolated_build = True
3-
requires =
4-
tox>=4.19
3+
requires = tox
54
env_list = py{37,38,39,310}-pytest{7,8}
65

76
[testenv]

0 commit comments

Comments
 (0)