Skip to content

Commit

Permalink
Add commas between args to passenv in tox.ini
Browse files Browse the repository at this point in the history
The presence of commas is enforced in tox 4.0.6

Closes Qiskit#812
  • Loading branch information
jlapeyre committed Feb 10, 2023
1 parent e4170ef commit 7d8ddb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ deps =
extras =
mpl
graphviz
passenv = RETWORKX_TEST_PRESERVE_IMAGES RUSTWORKX_PKG_NAME
passenv = RETWORKX_TEST_PRESERVE_IMAGES, RUSTWORKX_PKG_NAME
changedir = {toxinidir}/tests
commands =
stestr run {posargs}
Expand All @@ -44,7 +44,7 @@ setenv =
{[testenv]setenv}
deps =
-r {toxinidir}/docs/source/requirements.txt
passenv = {[testenv]passenv} RETWORKX_DEV_DOCS RETWORKX_LEGACY_DOCS
passenv = {[testenv]passenv}, RETWORKX_DEV_DOCS, RETWORKX_LEGACY_DOCS
changedir = {toxinidir}/docs
commands =
sphinx-build -W -b html source build/html {posargs}
Expand Down

0 comments on commit 7d8ddb4

Please sign in to comment.