Skip to content

Commit

Permalink
add travis config with two tox envs for py27 and py34
Browse files Browse the repository at this point in the history
  • Loading branch information
noxan committed Sep 11, 2015
1 parent 80c1275 commit 1f2cbfc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: python
install:
- pip install tox
script:
- tox -e $TOX_ENV
env:
- "TOXENV=py34"
- "TOXENV=py27"
6 changes: 6 additions & 0 deletions tox.ini
Expand Up @@ -5,3 +5,9 @@ skipsdist = True
[testenv]
usedevelop = True
commands = python runtests.py

[testenv:py27]
basepython = python2.7

[testenv:py34]
basepython = python3.4

0 comments on commit 1f2cbfc

Please sign in to comment.