mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-09 11:28:14 +08:00
Fix tests
This commit is contained in:
@@ -9,8 +9,8 @@ from packaging import version
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.skipIf(
|
||||
version.parse(optuna_ver) < version.Version("3.3.0.dev"),
|
||||
@pytest.mark.skipif(
|
||||
version.parse(optuna_ver) < version.Version("3.3.0"),
|
||||
"Artifact is not implemented yet in Optuna",
|
||||
)
|
||||
def test_list_optuna_artifacts() -> None:
|
||||
@@ -39,4 +39,4 @@ def test_list_optuna_artifacts() -> None:
|
||||
|
||||
artifact_id = artifact_meta_list[0]["artifact_id"]
|
||||
with artifact_store.open_reader(artifact_id) as reader:
|
||||
assert reader.read() == dummy_content
|
||||
assert reader.read() == dummy_content
|
||||
|
||||
Reference in New Issue
Block a user