From 56286b69291d64eb7e90b9f81a392f5b813c7343 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 16:38:05 -0600 Subject: [PATCH] Adjust tox passenv to be multiline (#345) (#347) * passenv spacing changes post tox release of 4.0 * formatting (cherry picked from commit 65e0a80a3c5b5fe08cb8227f3887afff4fd944c3) Co-authored-by: Matthew McKnight <91097623+McKnight-42@users.noreply.github.com> --- tox.ini | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index d8e41c56d..1338de1ae 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -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