Skip to content

Commit

Permalink
Fix passing multiple values in testenv.passenv in tox.ini (#399)
Browse files Browse the repository at this point in the history
Current versions of tox advise: pass_env values cannot contain
whitespace, use comma to have multiple values in a single line

Fixes #398.

Co-authored-by: Prashant Srivastava <50466688+srprash@users.noreply.github.com>
  • Loading branch information
musicinmybrain and srprash authored Oct 16, 2023
1 parent c50fe3e commit 9d27fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ envlist =
py{37,38,39,310,311}-ext-sqlite3

[testenv]
passenv = TOXENV CI CODECOV_*
passenv = TOXENV,CI,CODECOV_*

deps =
; Testing packages
Expand Down

0 comments on commit 9d27fe2

Please sign in to comment.