Skip to content

Commit

Permalink
Adjust tox passenv to be multiline (#6405)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 authored and stu-k committed Dec 12, 2022
1 parent 1809852 commit 144031d
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 @@ -6,7 +6,9 @@ envlist = unit,integration
description = unit testing
download = true
skip_install = true
passenv = DBT_* PYTEST_ADDOPTS
passenv =
DBT_*
PYTEST_ADDOPTS
commands =
{envpython} -m pytest --cov=core {posargs} test/unit
{envpython} -m pytest --cov=core {posargs} tests/unit
Expand All @@ -18,7 +20,10 @@ deps =
description = adapter plugin integration testing
download = true
skip_install = true
passenv = DBT_* POSTGRES_TEST_* PYTEST_ADDOPTS
passenv =
DBT_*
POSTGRES_TEST_*
PYTEST_ADDOPTS
commands =
{envpython} -m pytest --cov=core -m profile_postgres {posargs} test/integration
{envpython} -m pytest --cov=core {posargs} tests/functional
Expand Down

0 comments on commit 144031d

Please sign in to comment.