1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-03 03:57:48 +01:00

MycroftOS: Fix start-mycroft script

- remove forgotten source-venv function calls
This commit is contained in:
Peter Steenbergen 2019-02-04 14:34:06 +01:00
parent 032566548a
commit d586d28c3f

View File

@ -201,15 +201,12 @@ case ${_opt} in
# launch-background ${_opt}
# ;;
"unittest")
source-venv
pytest test/unittests/ --cov=mycroft "$@"
;;
"singleunittest")
source-venv
pytest "$@"
;;
"skillstest")
source-venv
pytest test/integrationtests/skills/discover_tests.py "$@"
;;
"audiotest")
@ -219,7 +216,6 @@ case ${_opt} in
launch-process ${_opt}
;;
"sdkdoc")
source-venv
cd doc
make ${opt}
cd ..