Skip to content

Commit

Permalink
removed scope from conftest fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
veenstrajelmer committed Jun 10, 2024
1 parent 5994859 commit a32c33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


@pytest.mark.timeout(60) # useful in case of ddl failure
@pytest.fixture(scope="session")
@pytest.fixture
def dir_meas_timeseries(tmp_path):
dir_meas_timeseries = tmp_path
start_date = pd.Timestamp(2010,1,1, tz="UTC+01:00")
Expand All @@ -23,7 +23,7 @@ def dir_meas_timeseries(tmp_path):


@pytest.mark.timeout(60) # useful in case of ddl failure
@pytest.fixture(scope="session")
@pytest.fixture
def dir_meas_extremes(tmp_path):
dir_meas_extremes = tmp_path
start_date = pd.Timestamp(2010,1,1, tz="UTC+01:00")
Expand Down

0 comments on commit a32c33d

Please sign in to comment.