Skip to content

Commit add5282

Browse files
committed
don't skip missing interpreters
1 parent b5f17a8 commit add5282

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
env:
2020
TOXENV: docs
21+
TOX_SKIP_MISSING_INTERPRETERS: False
2122
steps:
2223
- uses: actions/checkout@v2
2324
- uses: actions/setup-python@v2

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ jobs:
9393
toxenv: lint
9494

9595
name: ${{ matrix.name }}
96+
env:
97+
TOX_SKIP_MISSING_INTERPRETERS: False
9698
steps:
9799
- uses: actions/checkout@v2
98100
- uses: actions/setup-python@v2

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.8.0
3-
skip_missing_interpreters = true
3+
skip_missing_interpreters = {env:TOX_SKIP_MISSING_INTERPRETERS:True}
44
envlist =
55
py36,
66
py37,

0 commit comments

Comments
 (0)