-
Notifications
You must be signed in to change notification settings - Fork 23
/
tox.ini
96 lines (87 loc) · 1.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tox]
envlist =
black
blacken
isort
isort_format
ruff
pypi-description
towncrier
py{311,310,39}-django{42,41,40,32}
minversion = 3.23
[testenv]
commands = {env:COMMAND:python} setup.py test {posargs}
deps=
django32: django~=3.2.0
django40: django~=4.0.0
django41: django~=4.1.0
django42: django~=4.2.0
-r{toxinidir}/requirements-test.txt
passenv =
COMMAND
PYTEST_*
[testenv:ruff]
commands =
{envpython} -m ruff check app_data test_app_data
deps =
interrogate
ruff
skip_install = true
[testenv:isort]
commands =
{envpython} -m isort -c --df app_data test_app_data
deps = isort~=5.12.0
skip_install = true
[testenv:isort_format]
commands =
{envpython} -m isort app_data test_app_data
deps = {[testenv:isort]deps}
skip_install = true
[testenv:black]
commands =
{envpython} -m black --check --diff .
deps = black
skip_install = true
[testenv:blacken]
commands =
{envpython} -m black .
deps = {[testenv:black]deps}
skip_install = true
[testenv:pypi-description]
commands =
{envpython} -m check_manifest
{envpython} -m build .
{envpython} -m twine check dist/*
deps =
invoke
check-manifest
build
twine
skip_install = true
[testenv:release]
commands =
{envpython} -m check_manifest
{envpython} -m build .
{envpython} -m twine upload {posargs} dist/*
deps = {[testenv:pypi-description]deps}
passenv =
TWINE_*
skip_install = true
[check-manifest]
ignore =
.*
*.ini
*.toml
*.json
*.txt
*.yml
*.yaml
.tx/**
changes/**
docs/**
helper.py
tasks.py
test_app_data/**
*.mo
ignore-bad-ideas =
*.mo