8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed30acb + b6055ce commit f86a044Copy full SHA for f86a044
.travis.yml
@@ -1,10 +1,17 @@
1
sudo: false
2
+cache:
3
+ directories:
4
+ - wheelhouse
5
+
6
language: python
7
python:
8
- 2.7
9
10
install:
- - pip install tox cython
11
+ - pip install wheel tox
12
+ - ls -la wheelhouse
13
+ - if [ ! -f wheelhouse/Cython-0.21.2-cp27-none-linux_x86_64.whl ] ; then pip wheel cython ; fi
14
+ - pip install wheelhouse/Cython-0.21.2-cp27-none-linux_x86_64.whl
15
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
16
17
script: tox
tox.ini
@@ -11,5 +11,6 @@ deps=
changedir=test
commands=
- c: python -c 'from msgpack import _packer, _unpacker' && py.test
+ c: python -c 'from msgpack import _packer, _unpacker'
+ c: py.test
pure: py.test
0 commit comments