File tree 1 file changed +15
-1
lines changed
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
import pytest
2
+ from dbt .tests .adapter .ephemeral .test_ephemeral import BaseEphemeral
3
+ from dbt .tests .adapter .ephemeral .test_ephemeral import TestEphemeralMulti as BaseTestEphemeralMulti
4
+ from dbt .tests .adapter .ephemeral .test_ephemeral import (
5
+ TestEphemeralNested as BaseTestEphemeralNested ,
6
+ )
2
7
from dbt .tests .adapter .ephemeral .test_ephemeral import (
3
- BaseEphemeral ,
4
8
ephemeral_errors__base__base_copy_sql ,
5
9
ephemeral_errors__base__base_sql ,
6
10
ephemeral_errors__dependent_sql ,
@@ -24,3 +28,13 @@ def test_ephemeral_error_handling(self, project):
24
28
assert len (results ) == 1
25
29
assert results [0 ].status == "skipped"
26
30
assert "Compilation Error" in results [0 ].message
31
+
32
+
33
+ @pytest .mark .skip (reason = "Ephemeral not supported" )
34
+ class TestEphemeralNestedSQLServer (BaseTestEphemeralNested ):
35
+ pass
36
+
37
+
38
+ @pytest .mark .skip (reason = "Ephemeral not supported" )
39
+ class TestEphemeralMultiSQLServer (BaseTestEphemeralMulti ):
40
+ pass
You can’t perform that action at this time.
0 commit comments