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