Add skillstest to start-mycroft
parent
0850f5073a
commit
32b14d0a0b
|
@ -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}
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue