Skip to content

Commit

Permalink
Add a tox configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pteichman committed Sep 8, 2012
1 parent 6022252 commit eea8de3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,6 +4,7 @@
*.instatrace *.instatrace
*.pyc *.pyc
.coverage .coverage
.tox
build build
cobe.egg-info cobe.egg-info
cobe.pstats cobe.pstats
Expand Down
13 changes: 13 additions & 0 deletions tox.ini
@@ -0,0 +1,13 @@
[tox]
envlist = py26, py27

[testenv]
deps=
coverage==3.5.2
flake8==1.4

commands=
flake8 cobe tests
coverage erase
coverage run setup.py test
coverage report -m --include="*cobe*"

0 comments on commit eea8de3

Please sign in to comment.