Skip to content

Commit

Permalink
tox ini needs now ',' instead of ' '
Browse files Browse the repository at this point in the history
perhaps older versions were more tolerant.
now `passenv` requires comma separated values
  • Loading branch information
kf@quenpc committed Jan 24, 2023
1 parent df9393f commit 81f9ff5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ commands=
python -m flake8 pypeman
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_* CODECOV_TOKEN TRAVIS TRAVIS_*
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

[testenv:py38]
deps =
Expand All @@ -26,7 +26,7 @@ commands=
python -m flake8 pypeman
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_* CODECOV_TOKEN TRAVIS TRAVIS_*
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

[testenv:py39]
deps =
Expand All @@ -38,7 +38,7 @@ commands=
python -m flake8 pypeman
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_* CODECOV_TOKEN TRAVIS TRAVIS_*
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

[testenv:py310]
deps =
Expand All @@ -50,4 +50,4 @@ commands=
python -m flake8 pypeman
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_* CODECOV_TOKEN TRAVIS TRAVIS_*
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

0 comments on commit 81f9ff5

Please sign in to comment.