File tree Expand file tree Collapse file tree 1 file changed +1
-17
lines changed Expand file tree Collapse file tree 1 file changed +1
-17
lines changed Original file line number Diff line number Diff line change 1
- from pathlib import Path
2
-
3
1
import pytest
4
2
from dbt .tests .adapter .simple_seed .seeds import seeds__expected_sql
5
3
from dbt .tests .adapter .simple_seed .test_seed import (
10
8
TestSeedParsing ,
11
9
TestSeedSpecificFormats ,
12
10
TestSimpleSeedEnabledViaConfig ,
13
- TestSimpleSeedWithBOM ,
14
11
)
15
12
from dbt .tests .adapter .simple_seed .test_seed_type_override import (
16
13
BaseSimpleSeedColumnOverride ,
17
14
seeds__disabled_in_config_csv ,
18
15
seeds__enabled_in_config_csv ,
19
16
)
20
- from dbt .tests .util import copy_file , get_connection
17
+ from dbt .tests .util import get_connection
21
18
22
19
from dbt .adapters .sqlserver import SQLServerAdapter
23
20
@@ -175,18 +172,5 @@ def setUp(self, project):
175
172
project .run_sql (fixed_setup_sql )
176
173
177
174
178
- class TestSimpleSeedWithBOMSQLServer (TestSimpleSeedWithBOM ):
179
- @pytest .fixture (scope = "class" , autouse = True )
180
- def setUp (self , project ):
181
- """Create table for ensuring seeds and models used in tests build correctly"""
182
- project .run_sql (fixed_setup_sql )
183
- copy_file (
184
- project .test_dir ,
185
- "seed_bom.csv" ,
186
- project .project_root / Path ("seeds" ) / "seed_bom.csv" ,
187
- "" ,
188
- )
189
-
190
-
191
175
class TestSeedSpecificFormatsSQLServer (TestSeedSpecificFormats ):
192
176
pass
You can’t perform that action at this time.
0 commit comments