From 4302e60bdfbca7ff441381d545361127b48310a9 Mon Sep 17 00:00:00 2001 From: Amnon Catav Date: Wed, 7 Feb 2024 14:21:16 +0200 Subject: [PATCH] rename config.yaml to default.yaml --- src/canopy/config/{config.yaml => default.yaml} | 0 tests/system/utils/test_config.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/canopy/config/{config.yaml => default.yaml} (100%) diff --git a/src/canopy/config/config.yaml b/src/canopy/config/default.yaml similarity index 100% rename from src/canopy/config/config.yaml rename to src/canopy/config/default.yaml diff --git a/tests/system/utils/test_config.py b/tests/system/utils/test_config.py index bec9d4c1..942b9a2f 100644 --- a/tests/system/utils/test_config.py +++ b/tests/system/utils/test_config.py @@ -7,7 +7,7 @@ from canopy.context_engine import ContextEngine from canopy.knowledge_base import KnowledgeBase -DEFAULT_CONFIG_PATH = 'src/canopy/config/config.yaml' +DEFAULT_CONFIG_PATH = 'src/canopy/config/default.yaml' @pytest.fixture(scope='module')