From 45c3a52dfea9058304fb5844e81eef226eaa2b7a Mon Sep 17 00:00:00 2001 From: David Vierra Date: Sun, 13 Oct 2013 13:22:20 -1000 Subject: [PATCH] Add cython to travis install command --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c6387c9..7aa590d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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"