diff --git a/.changes/unreleased/Fixes-20240416-203625.yaml b/.changes/unreleased/Fixes-20240416-203625.yaml new file mode 100644 index 000000000..35125f5f7 --- /dev/null +++ b/.changes/unreleased/Fixes-20240416-203625.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: skipping a test that provides a false condition +time: 2024-04-16T20:36:25.449409-05:00 +custom: + Author: McKnight-42 + Issue: "976" diff --git a/tests/functional/adapter/query_comment_tests/test_query_comments.py b/tests/functional/adapter/query_comment_tests/test_query_comments.py index 1ce4b6c7c..8fbfcbdd8 100644 --- a/tests/functional/adapter/query_comment_tests/test_query_comments.py +++ b/tests/functional/adapter/query_comment_tests/test_query_comments.py @@ -1,3 +1,4 @@ +import pytest from dbt.tests.adapter.query_comment.test_query_comment import ( BaseQueryComments, BaseMacroQueryComments, @@ -17,7 +18,12 @@ class TestMacroQueryCommentsSnowflake(BaseMacroQueryComments): class TestMacroArgsQueryCommentsSnowflake(BaseMacroArgsQueryComments): - pass + @pytest.mark.skip( + "This test is incorrectly comparing the version of `dbt-core`" + "to the version of `dbt-snowflake`, which is not always the same." + ) + def test_matches_comment(self, project, get_package_version): + pass class TestMacroInvalidQueryCommentsSnowflake(BaseMacroInvalidQueryComments):