Skip to content

Commit

Permalink
on windows, run via "python -m pytest"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Apr 26, 2019
1 parent 00ba5d3 commit b54c602
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ passenv = *
setenv =
DBT_CONFIG_DIR = ~/.dbt
DBT_INVOCATION_ENV = ci-appveyor
commands = pytest -v {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/unit
commands = python -m pytest -v {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/unit
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev_requirements.txt
Expand All @@ -183,7 +183,7 @@ passenv = *
setenv =
DBT_CONFIG_DIR = ~/.dbt
DBT_INVOCATION_ENV = ci-appveyor
commands = pytest -v -m profile_postgres {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
commands = python -m pytest -v -m profile_postgres {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
deps =
-e {toxinidir}/core
-e {toxinidir}/plugins/postgres
Expand All @@ -196,7 +196,7 @@ passenv = *
setenv =
DBT_CONFIG_DIR = ~/.dbt
DBT_INVOCATION_ENV = ci-appveyor
commands = pytest -v -m profile_snowflake {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
commands = python -m pytest -v -m profile_snowflake {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
deps =
-e {toxinidir}/core
-e {toxinidir}/plugins/snowflake
Expand All @@ -209,7 +209,7 @@ passenv = *
setenv =
DBT_CONFIG_DIR = ~/.dbt
DBT_INVOCATION_ENV = ci-appveyor
commands = pytest -v -m profile_bigquery {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
commands = python -m pytest -v -m profile_bigquery {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
deps =
-e {toxinidir}/core
-e {toxinidir}/plugins/bigquery
Expand All @@ -222,7 +222,7 @@ passenv = *
setenv =
DBT_CONFIG_DIR = ~/.dbt
DBT_INVOCATION_ENV = ci-appveyor
commands = pytest -v -m profile_redshift {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
commands = python -m pytest -v -m profile_redshift {posargs} --cov=dbt --cov-branch --cov-report html:htmlcov test/integration
deps =
-e {toxinidir}/core
-e {toxinidir}/plugins/postgres
Expand Down

0 comments on commit b54c602

Please sign in to comment.