Skip to content

Commit

Permalink
using pytest.mark.skip decorators to skip the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
prdpsvs committed Apr 10, 2024
1 parent 6150941 commit 477666a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions tests/functional/adapter/test_empty.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import pytest
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty

pytest.skip(

@pytest.mark.skip(
reason="render_limited() defaults to dbt-core implementation instead of using Fabric implementation"
)


class TestEmpty(BaseTestEmpty):
pass
2 changes: 1 addition & 1 deletion tests/unit/adapters/fabric/test_unit_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_unit_test_data_type(self, project, data_types):
raise AssertionError(f"unit test failed when testing model with {sql_value}")


@pytest.skip(
@pytest.mark.skip(
reason="Nested CTE's are not supported by Fabric DW. Should able to run this in 6 months"
)
class TestPostgresUnitTestingTypes(BaseUnitTestingTypes):
Expand Down

0 comments on commit 477666a

Please sign in to comment.