Skip to content

Commit

Permalink
Merge pull request #57 from tswicegood/add-detox
Browse files Browse the repository at this point in the history
Add detox (just a config/test runner change, no new code)
  • Loading branch information
tswicegood committed Oct 30, 2013
2 parents 13d371b + 78ee287 commit c2be4a6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -3,4 +3,5 @@
local_settings.py
django_ses.egg-info
dist/*
.DS_Store
.DS_Store
.tox/*
5 changes: 1 addition & 4 deletions .travis.yml
@@ -1,10 +1,7 @@
language: python
python:
- 2.6
- 2.7
install:
- sudo pip install -r requirements.txt
script: python runtests.py
script: detox
notifications:
email: false
irc: false
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,2 +1,2 @@
Django==1.3.1
boto==2.2.1
detox==0.9.3
22 changes: 22 additions & 0 deletions tox.ini
@@ -0,0 +1,22 @@
[tox]
envlist = django13, django14, django15
downloadcache = {toxworkdir}/.cache

[testenv]
commands =
python runtests.py

[testenv:django13]
deps =
-r{toxinidir}/requirements.txt
Django>=1.3,<1.4

[testenv:django14]
deps =
-r{toxinidir}/requirements.txt
Django>=1.4,<1.5

[testenv:django15]
deps =
-r{toxinidir}/requirements.txt
Django>=1.5,<1.6

0 comments on commit c2be4a6

Please sign in to comment.