Skip to content

Commit

Permalink
change travis configuration to use tox to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
medecau authored and vsergeev committed Apr 19, 2017
1 parent 2f7b667 commit 456032c
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
sudo: false
language: python
python:
- "2.7"
- "3.5"
- "pypy"
- "pypy3"
script: python test_umsgpack.py
install: pip install tox
script: tox

matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: pypy
env: TOXENV=pypy
- python: pypy3
env: TOXENV=pypy3

0 comments on commit 456032c

Please sign in to comment.