update shell script to exit virtual environment

This commit is contained in:
chfw 2017-05-29 22:40:13 +01:00
parent 8dd44c0fa1
commit 33471d557f
3 changed files with 3 additions and 1 deletions

View File

@ -13,9 +13,9 @@ before_install:
- pip install -r tests/requirements.txt
script:
- make test
- make -C examples
- make -C examples/robotchef_allinone
- make -C examples/robotchef_allinone_lml
- make -C examples
- make -C examples/v2
after_success:
codecov

View File

@ -15,5 +15,6 @@ cd ../robotchef
pip install -r tests/requirements.txt
nosetests tests
status=$?
deactivate
rm -rf /tmp/v1-robot
exit $status

View File

@ -14,5 +14,6 @@ cd robotchef_v2
pip install -r tests/requirements.txt
nosetests tests
status=$?
deactivate
rm -rf /tmp/v2-robot
exit $status