@@ -162,25 +162,21 @@ def test_simple_seed_with_disabled(self, clear_test_schema, project):
162162 check_table_does_not_exist (project .adapter , "seed_disabled" )
163163 check_table_does_exist (project .adapter , "seed_tricky" )
164164
165- @pytest .mark .skip (
166- reason = """
165+ @pytest .mark .skip (reason = """
167166 Running all the tests in the same schema causes the tests to fail
168167 as they all share the same schema across the tests
169- """
170- )
168+ """ )
171169 def test_simple_seed_selection (self , clear_test_schema , project ):
172170 results = run_dbt (["seed" , "--select" , "seed_enabled" ])
173171 assert len (results ) == 1
174172 check_table_does_exist (project .adapter , "seed_enabled" )
175173 check_table_does_not_exist (project .adapter , "seed_disabled" )
176174 check_table_does_not_exist (project .adapter , "seed_tricky" )
177175
178- @pytest .mark .skip (
179- reason = """
176+ @pytest .mark .skip (reason = """
180177 Running all the tests in the same schema causes the tests to fail
181178 as they all share the same schema across the tests
182- """
183- )
179+ """ )
184180 def test_simple_seed_exclude (self , clear_test_schema , project ):
185181 results = run_dbt (["seed" , "--exclude" , "seed_enabled" ])
186182 assert len (results ) == 1
@@ -207,12 +203,10 @@ def clear_test_schema(self, project):
207203 project .run_sql (f"drop view if exists { project .test_schema } .seed_tricky" )
208204 project .run_sql (f"drop schema if exists { project .test_schema } " )
209205
210- @pytest .mark .skip (
211- reason = """
206+ @pytest .mark .skip (reason = """
212207 Running all the tests in the same schema causes the tests to fail
213208 as they all share the same schema across the tests
214- """
215- )
209+ """ )
216210 def test_simple_seed_with_disabled (self , clear_test_schema , project ):
217211 results = run_dbt (["seed" ])
218212 assert len (results ) == 2
@@ -227,12 +221,10 @@ def test_simple_seed_selection(self, clear_test_schema, project):
227221 check_table_does_not_exist (project .adapter , "seed_disabled" )
228222 check_table_does_not_exist (project .adapter , "seed_tricky" )
229223
230- @pytest .mark .skip (
231- reason = """
224+ @pytest .mark .skip (reason = """
232225 Running all the tests in the same schema causes the tests to fail
233226 as they all share the same schema across the tests
234- """
235- )
227+ """ )
236228 def test_simple_seed_exclude (self , clear_test_schema , project ):
237229 results = run_dbt (["seed" , "--exclude" , "seed_enabled" ])
238230 assert len (results ) == 1
@@ -259,25 +251,21 @@ def clear_test_schema(self, project):
259251 project .run_sql (f"drop view if exists { project .test_schema } .seed_tricky" )
260252 project .run_sql (f"drop schema if exists { project .test_schema } " )
261253
262- @pytest .mark .skip (
263- reason = """
254+ @pytest .mark .skip (reason = """
264255 Running all the tests in the same schema causes the tests to fail
265256 as they all share the same schema across the tests
266- """
267- )
257+ """ )
268258 def test_simple_seed_with_disabled (self , clear_test_schema , project ):
269259 results = run_dbt (["seed" ])
270260 assert len (results ) == 2
271261 check_table_does_exist (project .adapter , "seed_enabled" )
272262 check_table_does_not_exist (project .adapter , "seed_disabled" )
273263 check_table_does_exist (project .adapter , "seed_tricky" )
274264
275- @pytest .mark .skip (
276- reason = """
265+ @pytest .mark .skip (reason = """
277266 Running all the tests in the same schema causes the tests to fail
278267 as they all share the same schema across the tests
279- """
280- )
268+ """ )
281269 def test_simple_seed_selection (self , clear_test_schema , project ):
282270 results = run_dbt (["seed" , "--select" , "seed_enabled" ])
283271 assert len (results ) == 1
0 commit comments