forked from ppfeufer/aa-srp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
53 lines (42 loc) · 1 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tox]
isolated_build = True
envlist =
aa_stable-py{38,39,310,311}
aa_testing-py{38,39,310,311}
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[gh-actions:env]
;DJANGO =
; 3.2: django32
; 4.0: django40
ALLIANCEAUTH =
stable: aa_stable
testing: aa_testing
[testenv]
setenv =
aa_stable: DJANGO_SETTINGS_MODULE = testauth.settings
aa_testing: DJANGO_SETTINGS_MODULE = testauth.settings_aa3x
deps=
; django32: Django>=3.2.9,<4.0.0
; django32: allianceauth>=2.9.4
aa_stable: Django<4.0.0
aa_stable: allianceauth<3.0.0
; django40: Django>=4.0.2,<5.0.0
; django40: allianceauth>=3.0.0a1
aa_testing: Django>=4.0.2,<5.0.0
aa_testing: allianceauth>=3.0.0b3
allianceauth-app-utils>=1.12.0
allianceauth-discordbot
aa-discordnotify
django-webtest
Faker
coverage
install_command = python -m pip install -U {opts} {packages}
commands=
coverage run runtests.py aasrp -v 2
coverage report -m
coverage xml