Skip to content

Commit

Permalink
Fix pass_env values cannot contain whitespace error in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
whimboo committed Jan 17, 2023
1 parent b238e2c commit b43977b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -54,5 +54,3 @@ jobs:

- name: Tox tests
run: tox -e ${{ matrix.toxenv }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 2 additions & 3 deletions tox.ini
Expand Up @@ -3,11 +3,10 @@ envlist = py37, py38, py39, pylama

[testenv]
usedevelop = true
passenv = GITHUB_* CI
passenv = GITHUB_*,CI
deps = -rrequirements/tests.txt
commands =
pytest --verbose --cov {posargs}
-coveralls --service=github
pytest --verbose --cov {posargs} -coveralls --service=github

[testenv:pylama]
deps = pylama
Expand Down

0 comments on commit b43977b

Please sign in to comment.