Skip to content

Commit

Permalink
A tox.ini to make sure Python 2.4-3.3 stay working
Browse files Browse the repository at this point in the history
I would have added a "py23" environment but it looks like tox might not
know about that, so I might have to keep testing that version by hand. I
will ask Holger about it.
  • Loading branch information
brandon-rhodes committed Dec 5, 2012
1 parent ba6a396 commit c3942f7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .gitignore
@@ -1,3 +1,4 @@
MANIFEST
dist
/MANIFEST
/dist/
/.tox/
*.pyc
13 changes: 13 additions & 0 deletions tox.ini
@@ -0,0 +1,13 @@
[tox]
envlist = py24, py25, py26, py27, py32, py33
[testenv]
commands = python -m unittest discover logging_tree
[testenv:py24]
deps = unittest2
commands = unit2 discover logging_tree
[testenv:py25]
deps = unittest2
commands = unit2 discover logging_tree
[testenv:py26]
deps = unittest2
commands = unit2 discover logging_tree

0 comments on commit c3942f7

Please sign in to comment.