summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 9247c78..2f3171c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,10 @@ python:
- 3.3
install:
- - "pip install cython six --use-mirrors"
- - "python setup.py install"
+ - sudo apt-get update -qq
+ - sudo apt-get install -q cython
+ - cython --cplus msgpack/_msgpack.pyx
+ - pip install six --use-mirrors
+ - python setup.py install
script: "nosetests -w test"