travis: prevent using pytest --boxed

This commit is contained in:
Mathieu Virbel 2019-02-25 11:37:19 +01:00 committed by Mathieu Virbel
parent e51c4481fb
commit 28aaafab3a
1 changed files with 2 additions and 2 deletions

View File

@ -181,10 +181,10 @@ script:
if [ "${RUN}" == "unit" ]; then if [ "${RUN}" == "unit" ]; then
if [ "${PY}" == "3" ]; then if [ "${PY}" == "3" ]; then
python3 setup.py build_ext --inplace; python3 setup.py build_ext --inplace;
env KIVY_NO_ARGS=1 pytest --boxed -v kivy/tests; env KIVY_NO_ARGS=1 pytest -v kivy/tests;
else else
make; make;
env KIVY_NO_ARGS=1 pytest --boxed -v kivy/tests; env KIVY_NO_ARGS=1 pytest -v kivy/tests;
fi; fi;
elif [ "${RUN}" == "app" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ] && ([ "${TRAVIS_EVENT_TYPE}" == "cron" ] || [ "${TRAVIS_TAG}" != "" ] || [[ "$TRAVIS_COMMIT_MESSAGE" =~ "[build app osx]" ]]); then elif [ "${RUN}" == "app" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ] && ([ "${TRAVIS_EVENT_TYPE}" == "cron" ] || [ "${TRAVIS_TAG}" != "" ] || [[ "$TRAVIS_COMMIT_MESSAGE" =~ "[build app osx]" ]]); then
openssl aes-256-cbc -K $encrypted_675f1a0c317c_key -iv $encrypted_675f1a0c317c_iv -in ./kivy/tools/travis/id_rsa.enc -out ~/.ssh/id_rsa -d; openssl aes-256-cbc -K $encrypted_675f1a0c317c_key -iv $encrypted_675f1a0c317c_iv -in ./kivy/tools/travis/id_rsa.enc -out ~/.ssh/id_rsa -d;