-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
47 lines (43 loc) · 909 Bytes
/
tox.ini
File metadata and controls
47 lines (43 loc) · 909 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[tox]
envlist =
black
flake8
isort
py{36,37,38}-dj22
py{36,37,38}-dj30
py{36,37,38}-dj31
py{36,37,38}-djmaster
minversion = 1.9
[testenv]
deps =
babel
coverage
dj22: Django>=2.2,<3.0
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
djmaster: https://github.com/django/django/archive/master.tar.gz
extras = phonenumberslite
commands =
coverage run --source phonenumber_field -m django test --settings=tests.settings {posargs}
coverage xml -o coverage-reports/coverage.xml
coverage html -d coverage-reports/html
coverage report
[testenv:black]
basepython = python3
commands =
black --target-version=py36 --check --diff .
deps =
black
skip_install = true
[testenv:flake8]
commands =
flake8
deps =
flake8
skip_install = true
[testenv:isort]
commands =
isort --check-only --diff .
deps =
isort>=5.0.2
skip_install = true