We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f0df1 commit 9accf24Copy full SHA for 9accf24
1 file changed
tests/test_api/test_run.py
@@ -30,8 +30,9 @@ def _assert_run_shape(run: OpenMLRun) -> None:
30
31
32
@pytest.mark.test_server()
33
-def test_run_v1_get(run_v1):
34
- run = run_v1.get(run_id=119)
+def test_run_v1_get(run_v1, test_files_directory):
+ openml.config.set_root_cache_directory(test_files_directory)
35
+ run = run_v1.get(run_id=1)
36
_assert_run_shape(run)
37
38
0 commit comments