diff --git a/.changes/unreleased/Fixed-20240828-120547.yaml b/.changes/unreleased/Fixed-20240828-120547.yaml new file mode 100644 index 00000000..6ada8f16 --- /dev/null +++ b/.changes/unreleased/Fixed-20240828-120547.yaml @@ -0,0 +1,3 @@ +kind: Fixed +body: Incompatible tests +time: 2024-08-28T12:05:47.794056+01:00 diff --git a/tests/functional/adapter/test_store_test_failures.py b/tests/functional/adapter/test_store_test_failures.py index f716f2f5..53cb5730 100644 --- a/tests/functional/adapter/test_store_test_failures.py +++ b/tests/functional/adapter/test_store_test_failures.py @@ -1,3 +1,5 @@ +import os + from dbt.tests.adapter.store_test_failures_tests.basic import ( StoreTestFailuresAsExceptions, StoreTestFailuresAsGeneric, @@ -6,29 +8,36 @@ StoreTestFailuresAsProjectLevelOff, StoreTestFailuresAsProjectLevelView, ) +from pytest import mark +@mark.skipif(bool(os.getenv('PASSWORD')), reason='Not supported in FB 1.0') class TestStoreTestFailuresAsInteractions(StoreTestFailuresAsInteractions): pass +@mark.skipif(bool(os.getenv('PASSWORD')), reason='Not supported in FB 1.0') class TestStoreTestFailuresAsProjectLevelOff(StoreTestFailuresAsProjectLevelOff): pass +@mark.skipif(bool(os.getenv('PASSWORD')), reason='Not supported in FB 1.0') class TestStoreTestFailuresAsProjectLevelView(StoreTestFailuresAsProjectLevelView): pass +@mark.skipif(bool(os.getenv('PASSWORD')), reason='Not supported in FB 1.0') class TestStoreTestFailuresAsGeneric(StoreTestFailuresAsGeneric): pass +@mark.skipif(bool(os.getenv('PASSWORD')), reason='Not supported in FB 1.0') class TestStoreTestFailuresAsProjectLevelEphemeral( StoreTestFailuresAsProjectLevelEphemeral ): pass +@mark.skipif(bool(os.getenv('PASSWORD')), reason='Not supported in FB 1.0') class TestStoreTestFailuresAsExceptions(StoreTestFailuresAsExceptions): pass