Skip to content

Commit 068b6a2

Browse files
committed
Take advantage of tox 4.12
1 parent 4f11461 commit 068b6a2

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ jobs:
208208
with:
209209
python-version-file: .python-version-default
210210
cache: pip
211-
- run: python -Im pip install tox
211+
# tox 4.12.0 started passing FORCE_COLOR and NO_COLOR by default.
212+
- run: python -Im pip install 'tox>=4.12.0'
212213

213214
- run: python -Im tox run -f color

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ wheel_build_env = .pkg
1515
extras =
1616
tests: tests
1717
mypy: typing
18-
pass_env =
19-
FORCE_COLOR
20-
NO_COLOR
2118
commands =
2219
tests: pytest {posargs}
2320
mypy: mypy tests/typing
@@ -70,7 +67,6 @@ commands =
7067
src \
7168
docs
7269

73-
7470
[testenv:docs-linkcheck]
7571
base_python = {[testenv:docs]base_python}
7672
extras = {[testenv:docs]extras}

0 commit comments

Comments
 (0)