1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-13 10:20:38 +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} # launch-background ${_opt}
# ;; # ;;
"unittest") "unittest")
source-venv
pytest test/unittests/ --cov=mycroft "$@" pytest test/unittests/ --cov=mycroft "$@"
;; ;;
"singleunittest") "singleunittest")
source-venv
pytest "$@" pytest "$@"
;; ;;
"skillstest") "skillstest")
source-venv
pytest test/integrationtests/skills/discover_tests.py "$@" pytest test/integrationtests/skills/discover_tests.py "$@"
;; ;;
"audiotest") "audiotest")
@ -219,7 +216,6 @@ case ${_opt} in
launch-process ${_opt} launch-process ${_opt}
;; ;;
"sdkdoc") "sdkdoc")
source-venv
cd doc cd doc
make ${opt} make ${opt}
cd .. cd ..