From 4881ba510163dd08c68a7e5cce8bf34549e7a895 Mon Sep 17 00:00:00 2001 From: bee_keeper Date: Sun, 6 Dec 2015 12:51:47 +0000 Subject: [PATCH] allauth tests --- tox.ini | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 110f206..0ff63b8 100644 --- a/tox.ini +++ b/tox.ini @@ -8,17 +8,24 @@ deps = django17: Django<1.8 django18: Django<1.9 django19: Django<1.10 - commands = python -V coverage run manage.py test invitations/tests/basic coverage report -#[testenv:allauth] -#commands = -# python -V -# coverage run manage.py test invitations/tests/allauth --settings=test_allauth_settings -# coverage report +[testenv:*-backendAllauth] +deps = + pip install django-allauth + -rrequirements.txt + django16: Django<1.7 + django17: Django<1.8 + django18: Django<1.9 + django19: Django<1.10 + +commands = + python -V + coverage run manage.py test invitations/tests/allauth --settings=test_allauth_settings + coverage report [testenv:flake8] basepython=python