|
35 | 35 | DEFAULT_LON_DATA = np.repeat([DEFAULT_LON_DATA], DEFAULT_FILE_SHAPE[0], axis=0) |
36 | 36 |
|
37 | 37 |
|
38 | | -@pytest.fixture(scope="session") |
39 | | -def g13_file(session_tmp_path: Path) -> Path: |
| 38 | +@pytest.fixture(scope="module") |
| 39 | +def g13_file(module_tmp_path: Path) -> Path: |
40 | 40 | """Create a GOES 13 geocat file.""" |
41 | 41 | platform_shortname = "GOES-13" |
42 | | - filename = session_tmp_path / "geocatL2.GOES-13.2015143.234500.nc" |
| 42 | + filename = module_tmp_path / "geocatL2.GOES-13.2015143.234500.nc" |
43 | 43 | return _create_geocat_file(filename, platform_shortname) |
44 | 44 |
|
45 | 45 |
|
46 | | -@pytest.fixture(scope="session") |
47 | | -def h8_file(session_tmp_path: Path) -> Path: |
| 46 | +@pytest.fixture(scope="module") |
| 47 | +def h8_file(module_tmp_path: Path) -> Path: |
48 | 48 | """Create a HIMAWARI 8 geocat file.""" |
49 | 49 | platform_shortname = "HIMAWARI-8" |
50 | | - filename = session_tmp_path / "geocatL2.HIMAWARI-8.2017092.210730.R304.R20.nc" |
| 50 | + filename = module_tmp_path / "geocatL2.HIMAWARI-8.2017092.210730.R304.R20.nc" |
51 | 51 | return _create_geocat_file(filename, platform_shortname) |
52 | 52 |
|
53 | 53 |
|
54 | | -@pytest.fixture(scope="session") |
55 | | -def g17_file(session_tmp_path: Path) -> Path: |
| 54 | +@pytest.fixture(scope="module") |
| 55 | +def g17_file(module_tmp_path: Path) -> Path: |
56 | 56 | """Create a GOES 17 geocat file.""" |
57 | | - filename = session_tmp_path / "geocatL2.GOES-17.CONUS.2020041.163130.hdf" |
| 57 | + filename = module_tmp_path / "geocatL2.GOES-17.CONUS.2020041.163130.hdf" |
58 | 58 | return _create_geocat_file(filename, platform_shortname="GOES-17") |
59 | 59 |
|
60 | 60 |
|
|
0 commit comments