From 96002bcf9fde9c6f2ef47bb1695d1e68925db1ca Mon Sep 17 00:00:00 2001 From: InnopolisU Date: Wed, 14 Aug 2024 08:26:03 +0300 Subject: [PATCH] Changed experiments test logic --- tests/integration/schema/test_configs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/schema/test_configs.py b/tests/integration/schema/test_configs.py index 563c9cdb..9e711163 100644 --- a/tests/integration/schema/test_configs.py +++ b/tests/integration/schema/test_configs.py @@ -74,7 +74,7 @@ def test_experiments(experiment_config_file): from hydra import compose, initialize from hydra.core.global_hydra import GlobalHydra - if "example" in experiment_config_file: + if "example" in str(experiment_config_file): GlobalHydra.instance().clear() initialize(config_path="../../../config", job_name="test_app")