Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
truskovskiyk committed Jul 15, 2024
1 parent 907b606 commit 78c5524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module-3/classic-example/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
import pytest
from great_expectations.dataset.pandas_dataset import PandasDataset

from classic_example.data import load_cola_data
from classic_example.data import load_sst2_data


@pytest.fixture(scope="session")
def data_path() -> Path:
_data_path = Path("/tmp/data")
_data_path.mkdir(exist_ok=True, parents=True)

load_cola_data(path_to_save=_data_path)
load_sst2_data(path_to_save=_data_path)

return _data_path

Expand Down

0 comments on commit 78c5524

Please sign in to comment.