Skip to content

Commit

Permalink
Added tox config
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Jan 3, 2014
1 parent 4a8a379 commit 718dc71
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/build
/django_paypal.egg-info
*.swp
.tox
24 changes: 24 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[tox]
envlist = py27-django14, py27-django15, py27-django16

[testenv]
commands = ./runtests.py
deps =

[testenv:py27-django14]
basepython = python2.7
deps =
Django==1.4.10
{[testenv]deps}

[testenv:py27-django15]
basepython = python2.7
deps =
Django==1.5.5
{[testenv]deps}

[testenv:py27-django16]
basepython = python2.7
deps =
Django==1.6.1
{[testenv]deps}

0 comments on commit 718dc71

Please sign in to comment.