From b4fb9841a7b0a2d7efc9f85d717f78fb9cfaf078 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 10 Jun 2024 21:27:37 -0500 Subject: [PATCH] finish renames --- tox.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 9ee243dc..5205d1fd 100644 --- a/tox.ini +++ b/tox.ini @@ -29,15 +29,15 @@ passenv = changedir = integration_tests allowlist_externals = dbt - {[testenv:dbt_integration_postgres_pytest]allowlist_externals} + {[testenv:dbt_integration_pytest]allowlist_externals} skip_install = true -deps = {[testenv:dbt_integration_postgres_pytest]deps} +deps = {[testenv:dbt_integration_pytest]deps} commands = dbt --version dbt debug --target snowflake dbt deps --target snowflake dbt build --target snowflake --full-refresh - bash -c "cd {toxinidir} && {[testenv:dbt_integration_postgres_pytest]commands}" + bash -c "cd {toxinidir} && {[testenv:dbt_integration_pytest]commands}" # Postgres integration tests for centralized dbt testing @@ -48,15 +48,15 @@ changedir = integration_tests allowlist_externals = dbt bash - {[testenv:dbt_integration_postgres_pytest]allowlist_externals} + {[testenv:dbt_integration_pytest]allowlist_externals} skip_install = true -deps = {[testenv:dbt_integration_postgres_pytest]deps} +deps = {[testenv:dbt_integration_pytest]deps} commands = dbt --version dbt debug --target postgres dbt deps --target postgres dbt build --target postgres --full-refresh - bash -c "cd {toxinidir} && {[testenv:dbt_integration_postgres_pytest]commands}" + bash -c "cd {toxinidir} && {[testenv:dbt_integration_pytest]commands}" # Postgres integration tests for centralized dbt testing # Uses pytest to run tests, assumes dbt is already installed in environment