From b26ac9cea979273f9377d04c1549ec9e4fc92ebc Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Tue, 21 Nov 2023 10:36:33 -0500 Subject: [PATCH] standardize config --- tox.ini | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/tox.ini b/tox.ini index d20a30fd9..8b62dff19 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -skipsdist = True +skipsdist = true envlist = py38,py39,py310,py311 [testenv:{unit,py38,py39,py310,py311,py}] @@ -9,22 +9,15 @@ passenv = DBT_* PYTEST_ADDOPTS commands = {envpython} -m pytest {posargs} tests/unit -deps = - -e.[dev,test] +deps = -e.[test] [testenv:{integration,py38,py39,py310,py311,py}-{snowflake}] -description = adapter plugin integration testing +description = integration testing skip_install = true passenv = DBT_* - SNOWFLAKE_TEST_* PYTEST_ADDOPTS - DD_CIVISIBILITY_AGENTLESS_ENABLED - DD_API_KEY - DD_SITE - DD_ENV - DD_SERVICE -commands = - snowflake: {envpython} -m pytest {posargs} tests/functional -deps = - -e.[test] + SNOWFLAKE_TEST_* + DD_* +commands = {envpython} -m pytest {posargs} tests/functional +deps = -e.[test]