diff --git a/config/anyscale.yaml b/src/canopy/config/anyscale.yaml similarity index 100% rename from config/anyscale.yaml rename to src/canopy/config/anyscale.yaml diff --git a/config/azure.yaml b/src/canopy/config/azure.yaml similarity index 100% rename from config/azure.yaml rename to src/canopy/config/azure.yaml diff --git a/config/config.yaml b/src/canopy/config/config.yaml similarity index 100% rename from config/config.yaml rename to src/canopy/config/config.yaml diff --git a/tests/system/utils/test_config.py b/tests/system/utils/test_config.py index 0701f358..bec9d4c1 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_COFIG_PATH = 'config/config.yaml' +DEFAULT_CONFIG_PATH = 'src/canopy/config/config.yaml' @pytest.fixture(scope='module') @@ -24,7 +24,7 @@ def temp_index_name(): def test_default_config_matches_code_defaults(temp_index_name): - with open(DEFAULT_COFIG_PATH) as f: + with open(DEFAULT_CONFIG_PATH) as f: default_config = yaml.safe_load(f) chat_engine_config = default_config['chat_engine']