forked from roaldnefs/django-sms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
40 lines (35 loc) · 729 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
[tox]
envlist =
py3{6,7,8,9,10}-django22
py3{6,7,8,9,10}-django31
py3{6,7,8,9,10}-django32
py3{6,7,8,9,10}-master
mypy
pep8
[testenv]
commands =
{envpython} -m coverage run setup.py test
{envpython} -m coverage report
{envpython} -m coverage html
{envpython} -m mypy --config-file=tox.ini sms tests
setenv=
PYTHONWARNINGS=default
deps=
messagebird
twilio
coverage
mypy
django22: Django==2.2.*
django31: Django==3.1.*
django32: Django==3.2.*
django-master: https://github.com/django/django/archive/master.tar.gz
[testenv:pep8]
commands =
flake8 {posargs} sms/ tests/
deps=
flake8
[coverage:run]
include = sms*
[mypy]
[flake8]
exclude = docs/*