Skip to content
This repository has been archived by the owner on Feb 13, 2020. It is now read-only.

Commit

Permalink
Use tox for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Dec 23, 2014
1 parent a174018 commit 4a0546d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ bin
build
develop-eggs
dist
.tox
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
language: python
python:
- 3.2
- 3.3
sudo: false
env:
- TOXENV=py32
- TOXENV=py33
install:
- python bootstrap.py
- bin/buildout
- travis_retry pip install tox
script:
- bin/test -v1
- tox
notifications:
email: false
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tox]
envlist =
py32,py33

[testenv]
deps =
commands =
python setup.py test -q

0 comments on commit 4a0546d

Please sign in to comment.