-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (33 loc) · 816 Bytes
/
tox.ini
File metadata and controls
34 lines (33 loc) · 816 Bytes
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
34
[tox]
envlist=
py{38}-django{42}
py{39}-django{42}
py{310}-django{42, 50, 51, 52}
py{311}-django{42, 50, 51, 52}
py{312}-django{42, 50, 51, 52}
[testenv]
setenv =
PYTHONPATH = {toxinidir}/example_project
LC_ALL = en_US.utf-8
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
deps =
djangorestframework<4.0
social-auth-core==4.6.1
social-auth-app-django==5.4.3
djangorestframework-jwt
djangorestframework_simplejwt
django-rest-knox<5.0.0
coverage
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
django52: Django>=5.2,<5.3
-rrequirements_test.txt
commands =
coverage run --source=rest_social_auth -m pytest {posargs}
coverage report
coverage lcov