Commit 0611a4cc authored by Jason Madden's avatar Jason Madden

Do not compile cython during install on Travis to speed up the start of the build.

parent 3dd53caa
...@@ -8,8 +8,10 @@ env: ...@@ -8,8 +8,10 @@ env:
- TOXENV=py33 - TOXENV=py33
- TOXENV=py34 - TOXENV=py34
install: install:
- travis_retry pip install -U pip - travis_retry pip install -U pip tox
- travis_retry pip install -U tox cython # We only have a few files to compile, so not compiling cython itself
# makes the overall build much faster.
- travis_retry pip install --install-option='--no-cython-compile' cython
script: script:
- tox - tox
notifications: notifications:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment