1#!/bin/bash
2
3if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
4    source ~/.venv/bin/activate
5fi
6
7python -m pytest pyfakefs/pytest_tests/pytest_fixture_param_test.py
8