Skip to content

Commit

Permalink
small refactor of conftests.py file (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pczajka authored Mar 12, 2024
1 parent 03603f2 commit 3908897
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests_integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
from typer import Typer
from typer.testing import CliRunner

from tests.conftest import clean_logging_handlers_fixture
from tests.testing_utils.fixtures import alter_snowflake_yml, snowflake_home
from tests.conftest import clean_logging_handlers_fixture # noqa: F401
from tests.testing_utils.fixtures import (
alter_snowflake_yml, # noqa: F401
snowflake_home,
)

pytest_plugins = [
"tests_integration.testing_utils",
Expand Down Expand Up @@ -152,6 +155,3 @@ def reset_global_context_after_each_test(request):
@pytest.fixture(autouse=True)
def isolate_snowflake_home(snowflake_home):
yield snowflake_home


__all__ = ["alter_snowflake_yml", "snowflake_home", "clean_logging_handlers_fixture"]

0 comments on commit 3908897

Please sign in to comment.