diff options
author | INADA Naoki <songofacandy@gmail.com> | 2012-12-11 06:00:08 -0800 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2012-12-11 06:00:08 -0800 |
commit | 647af23373c502c2b648ccd425686a89808f1599 (patch) | |
tree | 4951401513505ba0bdc069d912d67f0cd5ceda1c | |
parent | 2ad02bb11a9e1a54bee11040b04a6c7138779e44 (diff) | |
parent | 34611a8ccdc61ba2a8bbb5612c32ed8054315b3f (diff) | |
download | msgpack-python-647af23373c502c2b648ccd425686a89808f1599.tar.gz |
Merge pull request #38 from msgpack/travis
Use tox on Travis.
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index dd4a10a..2e6fc56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,15 @@ language: python python: - - 2.6 - 2.7 - - 3.2 - - 3.3 + +env: + - PIP_USE_MIRRORS=true install: - sudo apt-get update -qq - - sudo apt-get install -q cython + - sudo apt-get install -q python3.3-dev + - pip install --use-mirrors tox cython - cython --cplus msgpack/_packer.pyx - cython --cplus msgpack/_unpacker.pyx - - pip install six --use-mirrors - - python setup.py install -script: "nosetests -w test" +script: "tox" |