Skip to content

Commit 6fa8a21

Browse files
authored
fixed tox.ini parameter passenv (#670)
* fixed tox.ini parameter passenv * use tox>=4.0
1 parent e41b063 commit 6fa8a21

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
flake8 pywps
3535
if: matrix.python-version == 3.7
3636
- name: Install tox 📦
37-
run: pip install tox
37+
run: pip install "tox>=4.0"
3838
- name: Run tests with tox ⚙️
3939
run: tox -e ${{ matrix.tox-env }}
4040
- name: Run coveralls ⚙️

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ Sphinx
88
twine
99
wheel
1010
bump2version
11+
tox>=4.0

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ setenv =
88
PYTEST_ADDOPTS = "--color=yes"
99
PYTHONPATH = {toxinidir}
1010
COV_CORE_SOURCE =
11-
passenv = CI GITHUB_* LD_LIBRARY_PATH
11+
passenv = CI, GITHUB_*, LD_LIBRARY_PATH
1212
download = True
1313
install_command =
1414
python -m pip install --no-user {opts} {packages}

0 commit comments

Comments
 (0)