forked from grantjenks/python-diskcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
43 lines (38 loc) · 703 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
[tox]
envlist=py35,py36,py37,py38,pylint
skip_missing_interpreters=True
[testenv]
deps=
django==2.2.*
pytest
pytest-django
pytest-xdist
commands=python -m pytest
setenv=
DJANGO_SETTINGS_MODULE=tests.settings
PYTHONPATH={toxinidir}
[pytest]
addopts=
-n auto
--ignore tests/benchmark_core.py
--ignore tests/benchmark_djangocache.py
--ignore tests/benchmark_glob.py
--ignore tests/issue_85.py
--ignore tests/plot.py
norecursedirs=site-packages
testpaths=docs diskcache tests
[testenv:pylint]
deps=
django==2.2.*
flake8
pylint
commands=
flake8 diskcache
pylint diskcache
[doc8]
ignore=D000
[flake8]
ignore=
E124
E303
W503