@@ -163,25 +163,21 @@ def test_simple_seed_with_disabled(self, clear_test_schema, project):
163163 check_table_does_not_exist (project .adapter , "seed_disabled" )
164164 check_table_does_exist (project .adapter , "seed_tricky" )
165165
166- @pytest .mark .skip (
167- reason = """
166+ @pytest .mark .skip (reason = """
168167 Running all the tests in the same schema causes the tests to fail
169168 as they all share the same schema across the tests
170- """
171- )
169+ """ )
172170 def test_simple_seed_selection (self , clear_test_schema , project ):
173171 results = run_dbt (["seed" , "--select" , "seed_enabled" ])
174172 assert len (results ) == 1
175173 check_table_does_exist (project .adapter , "seed_enabled" )
176174 check_table_does_not_exist (project .adapter , "seed_disabled" )
177175 check_table_does_not_exist (project .adapter , "seed_tricky" )
178176
179- @pytest .mark .skip (
180- reason = """
177+ @pytest .mark .skip (reason = """
181178 Running all the tests in the same schema causes the tests to fail
182179 as they all share the same schema across the tests
183- """
184- )
180+ """ )
185181 def test_simple_seed_exclude (self , clear_test_schema , project ):
186182 results = run_dbt (["seed" , "--exclude" , "seed_enabled" ])
187183 assert len (results ) == 1
@@ -208,12 +204,10 @@ def clear_test_schema(self, project):
208204 project .run_sql (f"drop view if exists { project .test_schema } .seed_tricky" )
209205 project .run_sql (f"drop schema if exists { project .test_schema } " )
210206
211- @pytest .mark .skip (
212- reason = """
207+ @pytest .mark .skip (reason = """
213208 Running all the tests in the same schema causes the tests to fail
214209 as they all share the same schema across the tests
215- """
216- )
210+ """ )
217211 def test_simple_seed_with_disabled (self , clear_test_schema , project ):
218212 results = run_dbt (["seed" ])
219213 assert len (results ) == 2
@@ -228,12 +222,10 @@ def test_simple_seed_selection(self, clear_test_schema, project):
228222 check_table_does_not_exist (project .adapter , "seed_disabled" )
229223 check_table_does_not_exist (project .adapter , "seed_tricky" )
230224
231- @pytest .mark .skip (
232- reason = """
225+ @pytest .mark .skip (reason = """
233226 Running all the tests in the same schema causes the tests to fail
234227 as they all share the same schema across the tests
235- """
236- )
228+ """ )
237229 def test_simple_seed_exclude (self , clear_test_schema , project ):
238230 results = run_dbt (["seed" , "--exclude" , "seed_enabled" ])
239231 assert len (results ) == 1
@@ -260,25 +252,21 @@ def clear_test_schema(self, project):
260252 project .run_sql (f"drop view if exists { project .test_schema } .seed_tricky" )
261253 project .run_sql (f"drop schema if exists { project .test_schema } " )
262254
263- @pytest .mark .skip (
264- reason = """
255+ @pytest .mark .skip (reason = """
265256 Running all the tests in the same schema causes the tests to fail
266257 as they all share the same schema across the tests
267- """
268- )
258+ """ )
269259 def test_simple_seed_with_disabled (self , clear_test_schema , project ):
270260 results = run_dbt (["seed" ])
271261 assert len (results ) == 2
272262 check_table_does_exist (project .adapter , "seed_enabled" )
273263 check_table_does_not_exist (project .adapter , "seed_disabled" )
274264 check_table_does_exist (project .adapter , "seed_tricky" )
275265
276- @pytest .mark .skip (
277- reason = """
266+ @pytest .mark .skip (reason = """
278267 Running all the tests in the same schema causes the tests to fail
279268 as they all share the same schema across the tests
280- """
281- )
269+ """ )
282270 def test_simple_seed_selection (self , clear_test_schema , project ):
283271 results = run_dbt (["seed" , "--select" , "seed_enabled" ])
284272 assert len (results ) == 1
0 commit comments