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 ef11432 commit a9adb14Copy full SHA for a9adb14
1 file changed
openml/testing.py
@@ -42,7 +42,9 @@ def setUp(self):
42
self.cached = True
43
# amueller's read/write key that he will throw away later
44
openml.config.apikey = "610344db6388d9ba34f6db45a3cf71de"
45
- openml.config.server = "https://test.openml.org/api/v1/xml"
+ self.production_server = "http://www.openml.org/api/v1/xml"
46
+ self.test_server = "https://test.openml.org/api/v1/xml"
47
+ openml.config.server = self.test_server
48
openml.config.set_cache_directory(self.workdir, self.workdir)
49
50
def tearDown(self):
0 commit comments