forked from st4lk/django-rest-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
33 lines (31 loc) · 754 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tox]
envlist=
py{27,34}-django{18,19,110,111},
py{35}-django{18,19,110,111}
py{36}-django{111}
[testenv]
setenv =
PYTHONPATH = {toxinidir}/example_project
LC_ALL = en_US.utf-8
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
deps =
djangorestframework<4.0
social-auth-core==1.4.0
social-auth-app-django==1.2.0
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
py27-django110: djangorestframework-jwt
py27-django110: coverage
-rrequirements_test.txt
commands =
py.test
[testenv:py27-django110]
commands =
coverage run --source=rest_social_auth -m py.test
coverage report