Add skillstest to start-mycroft

pull/1527/head
Matthew D. Scholefield 2018-05-11 15:15:06 -05:00
parent 0850f5073a
commit 32b14d0a0b
1 changed files with 6 additions and 1 deletions

View File

@ -42,7 +42,8 @@ function help() {
echo
echo "Tools:"
echo " cli the Command Line Interface"
echo " unittest run mycroft-core unit tests (requires nose2)"
echo " unittest run mycroft-core unit tests (requires pytest)"
echo " skillstest run the skill autotests for all skills (requires pytest)"
echo
echo "Utils:"
echo " skill_container <skill> container for running a single skill"
@ -165,6 +166,10 @@ case ${_opt} in
source ${VIRTUALENV_ROOT}/bin/activate
pytest test/unittests/ --cov=mycroft
;;
"skillstest")
source ${VIRTUALENV_ROOT}/bin/activate
pytest test/integrationtests/skills/discover_tests.py
;;
"audiotest")
launch-process ${_opt}
;;