Skip to content

Commit

Permalink
Skip failing test TestColumnQuotingDefault on unsupported versions (#…
Browse files Browse the repository at this point in the history
…858) (#862)

* skip failing test on unsupported version

(cherry picked from commit f4344f1)

Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and mikealfare committed Jul 17, 2024
1 parent 04208fe commit 797fa29
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration/column_quoting/test_column_quotes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from tests.integration.base import DBTIntegrationTest, use_profile
import os

import pytest


class BaseColumnQuotingTest(DBTIntegrationTest):
def column_quoting(self):
Expand Down Expand Up @@ -35,6 +37,7 @@ def models(self):
def run_dbt(self, *args, **kwargs):
return super().run_dbt(*args, **kwargs)

@pytest.mark.skip("This functionality no longer works as intended and this is an unsupported version.")
@use_profile('redshift')
def test_redshift_column_quotes(self):
self._run_columnn_quotes()
Expand Down

0 comments on commit 797fa29

Please sign in to comment.