diff --git a/tests/functional/dependencies/test_simple_dependency.py b/tests/functional/dependencies/test_simple_dependency.py index 0c91c24e7d2..a796c694211 100644 --- a/tests/functional/dependencies/test_simple_dependency.py +++ b/tests/functional/dependencies/test_simple_dependency.py @@ -379,10 +379,6 @@ def test_deps_bad_profile(self, project): class TestSimpleDependcyTarball(object): - @pytest.fixture(scope="class", autouse=True) - def setUp(self, project): - project.run_sql_file(project.test_data_dir / Path("seed.sql")) - @pytest.fixture(scope="class") def packages(self): return { @@ -400,10 +396,6 @@ def test_deps_simple_tarball_doesnt_error_out(self, project): class TestBadTarballDependency(object): - @pytest.fixture(scope="class", autouse=True) - def setUp(self, project): - project.run_sql_file(project.test_data_dir / Path("seed.sql")) - def test_malformed_tarball_package_causes_exception(self, project): # We have to specify the bad formatted package here because if we do it # in a `packages` fixture, the test will blow up in the setup phase, meaning