Skip to content

Commit

Permalink
Don't run doctests on pypy build
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Feb 3, 2014
1 parent 2a79604 commit 23d489f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ before_install:
install:
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install numpy; fi
- "pip install -U ."
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install sphinx; fi
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ] && [ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install sphinx; fi
# Run tests
script:
- "python run_tests.py"
# Run doctests against py27
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then cd docs && make doctest; fi
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ] && [ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then cd docs && make doctest; fi

0 comments on commit 23d489f

Please sign in to comment.