1#!/bin/bash 2 3if [[ $TRAVIS_OS_NAME == 'osx' ]]; then 4 source ~/.venv/bin/activate 5fi 6 7python -m pytest pyfakefs/pytest_tests/pytest_plugin_failing_test.py > ./testresult.txt 8python -m pytest pyfakefs/pytest_tests/pytest_check_failed_plugin_test.py && \ 9python -m pytest pyfakefs/pytest_tests/pytest_plugin_test.py 10