mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-06 05:51:17 +08:00
* update python version * fix: Correct selector handling and add time filtering in storage.py * fix: convert index and columns to list in repr methods * feat: Add Makefile for managing project prerequisites * feat: Add Cython extensions for rolling and expanding operations * resolve install error * fix lint error * fix lint error * fix lint error * fix lint error * fix lint error * update build package * update makefile * update ci yaml * fix docs build error * fix ubuntu install error * fix docs build error * fix install error * fix install error * fix install error * fix install error * fix pylint error * fix pylint error * fix pylint error * fix pylint error * fix pylint error E1123 * fix pylint error R0917 * fix pytest error * fix pytest error * fix pytest error * update code * update code * fix ci error * fix pylint error * fix black error * fix pytest error * fix CI error * fix CI error * add python version to CI * add python version to CI * add python version to CI * fix pylint error * fix pytest general nn error * fix CI error * optimize code * add coments * Extended macos version * remove build package --------- Co-authored-by: Young <afe.young@gmail.com>
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
import unittest
|
|
import platform
|
|
import mlflow
|
|
import time
|
|
from pathlib import Path
|
|
import shutil
|
|
|
|
|
|
class MLflowTest(unittest.TestCase):
|
|
TMP_PATH = Path("./.mlruns_tmp/")
|
|
|
|
def tearDown(self) -> None:
|
|
if self.TMP_PATH.exists():
|
|
shutil.rmtree(self.TMP_PATH)
|
|
|
|
def test_creating_client(self):
|
|
"""
|
|
Please refer to qlib/workflow/expm.py:MLflowExpManager._client
|
|
we don't cache _client (this is helpful to reduce maintainance work when MLflowExpManager's uri is chagned)
|
|
|
|
This implementation is based on the assumption creating a client is fast
|
|
"""
|
|
start = time.time()
|
|
for i in range(10):
|
|
_ = mlflow.tracking.MlflowClient(tracking_uri=str(self.TMP_PATH))
|
|
end = time.time()
|
|
elapsed = end - start
|
|
if platform.system() == "Linux":
|
|
self.assertLess(elapsed, 1e-2) # it can be done in less than 10ms
|
|
else:
|
|
self.assertLess(elapsed, 2e-2)
|
|
print(elapsed)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|