-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtox.ini
41 lines (37 loc) · 1.02 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
[tox]
requires =
tox>=4
env_list = py3.7-django3.2, py{3.8,3.9}-django{3.2,4.0,4.1,4.2}, py{3.10,3.11,3.12}-django{3.2,4.0,4.1,4.2,5.0,5.1}, py3.13-django{4.1,4.2,5.0,5.1}
[variables]
code = clickhouse_backend example tests
[testenv]
deps =
django3.2: Django>=3.2,<4.0
django4.0: Django>=4.0,<4.1
django4.1: Django>=4.1,<4.2
django4.2: Django>=4.2,<5.0
django5.0: Django>=5.0,<5.1
django5.1: Django>=5.1,<5.2
coverage
commands =
# Use local clickhouse_backend package so that coverage works properly.
pip install -e .
coverage run tests/runtests.py --debug-sql {posargs}
[testenv:lint]
description = lint code
skip_install = true
deps =
flake8
isort
commands =
isort -c {[variables]code}
flake8 --max-line-length=88 --extend-ignore=E203,E501 {[variables]code}
[testenv:format]
description = format code
skip_install = true
deps =
black==23.7.0
isort
commands =
isort {[variables]code}
black -t py37 -t py38 -t py39 -t py310 -t py311 -t py312 {[variables]code}