Skip to content

Commit

Permalink
fixed tox.ini parameter passenv (#670)
Browse files Browse the repository at this point in the history
* fixed tox.ini parameter passenv

* use tox>=4.0
  • Loading branch information
cehbrecht authored Jan 27, 2023
1 parent e41b063 commit 6fa8a21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
flake8 pywps
if: matrix.python-version == 3.7
- name: Install tox 📦
run: pip install tox
run: pip install "tox>=4.0"
- name: Run tests with tox ⚙️
run: tox -e ${{ matrix.tox-env }}
- name: Run coveralls ⚙️
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Sphinx
twine
wheel
bump2version
tox>=4.0
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ setenv =
PYTEST_ADDOPTS = "--color=yes"
PYTHONPATH = {toxinidir}
COV_CORE_SOURCE =
passenv = CI GITHUB_* LD_LIBRARY_PATH
passenv = CI, GITHUB_*, LD_LIBRARY_PATH
download = True
install_command =
python -m pip install --no-user {opts} {packages}
Expand Down

0 comments on commit 6fa8a21

Please sign in to comment.