Skip to content

Commit

Permalink
Troubleshooting test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Sep 13, 2024
1 parent 6095c67 commit d88d52c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/test_skills_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,13 @@ def setUpClass(cls) -> None:
# use_neon_core(init_config_dir)()
import ovos_config
import importlib
importlib.reload(ovos_config.meta)
meta = ovos_config.meta.get_ovos_config()
assert meta['default_config_path'].endswith('neon.yaml')
importlib.reload(ovos_config.locations)
assert ovos_config.locations.DEFAULT_CONFIG == meta['default_config_path']
importlib.reload(ovos_config.config)
importlib.reload(ovos_config)

meta = ovos_config.meta.get_ovos_config()
assert meta['default_config_path'].endswith('neon.yaml')
assert ovos_config.config.Configuration.default.path == meta['default_config_path']

from neon_core.skills.intent_service import NeonIntentService
Expand Down

0 comments on commit d88d52c

Please sign in to comment.