Skip to content

Commit

Permalink
Handle default behavior for GH Actions compat
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 23, 2023
1 parent 72e205e commit 3080c4c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions neon_minerva/tests/skill_unit_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ class SkillTestCase(unittest.TestCase):

# Get test skill
skill_entrypoint = getenv("TEST_SKILL_ENTRYPOINT")
if not skill_entrypoint:
from ovos_plugin_manager.skills import find_skill_plugins
skill_entrypoints = find_skill_plugins().keys()
assert len(skill_entrypoints) == 1
skill_entrypoint = skill_entrypoints[0]

bus = FakeBus()
bus.run_forever()
Expand Down

0 comments on commit 3080c4c

Please sign in to comment.