Skip to content

Commit

Permalink
Adjust tox passenv to be multiline (#345) (#347)
Browse files Browse the repository at this point in the history
* passenv spacing changes post tox release of 4.0

* formatting

(cherry picked from commit 65e0a80)

Co-authored-by: Matthew McKnight <91097623+McKnight-42@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and McKnight-42 authored Dec 8, 2022
1 parent f523706 commit 56286b6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ envlist = py37,py38,py39,py310
[testenv:{unit,py37,py38,py39,py310,py}]
description = unit testing
skip_install = true
passenv = DBT_* PYTEST_ADDOPTS
passenv =
DBT_*
PYTEST_ADDOPTS
commands = {envpython} -m pytest {posargs} tests/unit
deps =
-rdev-requirements.txt
Expand All @@ -14,7 +16,10 @@ deps =
[testenv:{integration,py37,py38,py39,py310,py}-{snowflake}]
description = adapter plugin integration testing
skip_install = true
passenv = DBT_* SNOWFLAKE_TEST_* PYTEST_ADDOPTS
passenv =
DBT_*
SNOWFLAKE_TEST_*
PYTEST_ADDOPTS
commands =
snowflake: {envpython} -m pytest {posargs} -m profile_snowflake tests/integration
snowflake: {envpython} -m pytest {posargs} tests/functional
Expand Down

0 comments on commit 56286b6

Please sign in to comment.