8 lines
151 B
Bash
8 lines
151 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||
|
|
source ~/.venv/bin/activate
|
||
|
|
fi
|
||
|
|
|
||
|
|
python -m pytest pyfakefs/pytest_tests/pytest_fixture_test.py
|