Skip to content

Commit

Permalink
added continous integration build script
Browse files Browse the repository at this point in the history
  • Loading branch information
hltbra committed Aug 3, 2010
1 parent 6a6ae55 commit 87041b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Expand Up @@ -3,4 +3,10 @@ PYTHON=python
test:
$(PYTHON) setup.py test

.PHONY: test
tox:
@python -c 'import tox' 2>/dev/null || pip install tox

integration: tox
tox

.PHONY: test integration
5 changes: 5 additions & 0 deletions tox.ini
@@ -0,0 +1,5 @@
[tox]
envlist = py24,py25,py26,py27,py32

[testenv]
commands = python setup.py test

0 comments on commit 87041b6

Please sign in to comment.