mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-06 05:51:17 +08:00
* download orderbook data * fix CI error * fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * test fix CI error * optimize get_data code * optimize get_data code * optimize get_data code * optimize README --------- Co-authored-by: Linlang <v-linlanglv@microsoft.com>
34 lines
882 B
Python
34 lines
882 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
import unittest
|
|
from pathlib import Path
|
|
import shutil
|
|
|
|
from qlib.workflow import R
|
|
from qlib.tests import TestAutoData
|
|
|
|
|
|
class WorkflowTest(TestAutoData):
|
|
# Creating the directory manually doesn't work with mlflow,
|
|
# so we add a subfolder named .trash when we create the directory.
|
|
TMP_PATH = Path("./.mlruns_tmp/.trash")
|
|
|
|
def tearDown(self) -> None:
|
|
if self.TMP_PATH.exists():
|
|
shutil.rmtree(self.TMP_PATH)
|
|
|
|
def test_get_local_dir(self):
|
|
""" """
|
|
self.TMP_PATH.mkdir(parents=True, exist_ok=True)
|
|
|
|
with R.start(uri=str(self.TMP_PATH)):
|
|
pass
|
|
|
|
with R.uri_context(uri=str(self.TMP_PATH)):
|
|
resume_recorder = R.get_recorder()
|
|
resume_recorder.get_local_dir()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|