Add cython to travis install command

This commit is contained in:
David Vierra 2013-10-13 13:22:20 -10:00
parent d2f8945a6b
commit 45c3a52dfe

View File

@ -2,6 +2,6 @@ language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt -r requirements_test.txt --use-mirrors; python setup.py build_ext --inplace --force
install: pip install -r requirements.txt -r requirements_test.txt cython --use-mirrors; python setup.py build_ext --inplace --force
# command to run tests, e.g. python setup.py test
script: py.test -k "-TestServerGen and -TestMCR and -testNBTSpeed"