From b5ee6fc0d5635f0995513b1311ee3f3b26ed5925 Mon Sep 17 00:00:00 2001 From: Damian Owsianny Date: Tue, 15 Oct 2024 14:33:27 +0200 Subject: [PATCH] TEST NEW CONFIGS --- .github/workflows/ci.yml | 2 +- tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15f8704b..8b56d07b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: make dbt-${{ matrix.engine }}-tests elif [[ ${{ matrix.engine }} == "starburst_galaxy" ]]; then python -m pip install -e . -r dev_requirements.txt - python -m pytest tests/functional --profile starburst_galaxy + python -m pytest tests/functional/adapter/test_table_properties.py --profile starburst_galaxy fi - name: Remove container on failure diff --git a/tox.ini b/tox.ini index 517be553..70fd4d74 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skipsdist = True -envlist = unit, integration +envlist = integration [testenv:unit] description = unit testing @@ -14,7 +14,7 @@ deps = [testenv:integration] description = adapter plugin integration testing basepython = python3 -commands = {envpython} -m pytest {posargs} tests/functional +commands = {envpython} -m pytest {posargs} tests/functional/adapter/test_table_properties.py passenv = DBT_INVOCATION_ENV, DBT_TEST_TRINO_HOST, DBT_TEST_USER_1, DBT_TEST_USER_2, DBT_TEST_USER_3 deps = -r{toxinidir}/dev_requirements.txt