forked from jazzband/django-ical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
51 lines (47 loc) · 900 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tox]
envlist =
py310-djqa
py{38,39,310}-dj32
py{38,39,310}-dj40
py{38,39,310,311}-dj41
py{38,39,310,311}-dj42
py{310}-djmain
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[gh-actions:env]
DJANGO =
3.2: dj32
4.1: dj41
4.2: dj42
main: djmain
qa: djqa
[testenv]
usedevelop = true
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
coverage==7.3.2
dj32: django>=3.2,<3.3
dj41: django>=4.1,<4.2
dj42: django>=4.2,<4.3
djmain: https://github.com/django/django/archive/main.tar.gz
commands =
coverage run setup.py test
coverage report -m
[testenv:py38-djqa]
basepython = python3.8
ignore_errors = true
skip_install = true
setenv=
DJANGO_SETTINGS_MODULE=test_settings
deps =
django==3.2
black==23.10.1
prospector==1.10.3
commands =
prospector
black --check --diff django_ical