Skip to content

Commit 3adcd0e

Browse files
committed
update cache file
1 parent ebb6c2d commit 3adcd0e

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/conftest.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def _expected_static_cache_state(root_dir: Path) -> list[Path]:
205205
_c_root_dir = root_dir / "org" / "openml" / "test"
206206
res_paths = [root_dir, _c_root_dir]
207207

208-
for _d in ["datasets", "tasks", "runs"]:
208+
for _d in ["datasets", "tasks"]:
209209
res_paths.append(_c_root_dir / _d)
210210

211211
for _id in ["-1", "2"]:
@@ -220,7 +220,6 @@ def _expected_static_cache_state(root_dir: Path) -> list[Path]:
220220
)
221221

222222
res_paths.append(_c_root_dir / "datasets" / "30" / "dataset_30.pq")
223-
res_paths.append(_c_root_dir / "runs" / "1" / "description.xml")
224223

225224
for _id in ["1", "3", "1882"]:
226225
tmp_p = _c_root_dir / "tasks" / _id
@@ -235,6 +234,9 @@ def _expected_static_cache_state(root_dir: Path) -> list[Path]:
235234
_c_root_dir / "api" / "v1" / "xml" / "setup",
236235
_c_root_dir / "api" / "v1" / "xml" / "setup" / "1",
237236
_c_root_dir / "api" / "v1" / "xml" / "setup" / "1" / "body.xml",
237+
_c_root_dir / "api" / "v1" / "xml" / "run",
238+
_c_root_dir / "api" / "v1" / "xml" / "run" / "1",
239+
_c_root_dir / "api" / "v1" / "xml" / "run" / "1" / "body.xml",
238240
])
239241

240242
return res_paths

0 commit comments

Comments
 (0)