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
|
[tox]
envlist = py35-django{21,22}
py36-django{21,22,30,31,master}
py37-django{21,22,30,31,master}
py38-django{22,30,31,master}
docs
[testenv]
setenv =
PYTHONPATH = {toxinidir}
PYTHONWARNINGS = all
PYTEST_ADDOPTS = --cov --cov-fail-under=85 --cov-report=html --cov-report=term
commands =
pytest {posargs}
deps =
django21: Django>=2.1,<2.2
django22: Django>=2.2,<2.3
django30: Django>=3.0a1,<3.1
django31: Django>=3.1,<3.2
djangomaster: https://github.com/django/django/archive/main.tar.gz
pytest-django
pytest-cov
[testenv:lint]
skip_install = True
deps =
flake8
isort
black
commands =
flake8 {toxinidir} {posargs}
isort --check-only
black {toxinidir} --check
[testenv:docs]
whitelist_externals=make
changedir = docs
deps =
sphinx
commands =
make html
[pytest]
DJANGO_SETTINGS_MODULE = extra_views_tests.settings
python_files = tests.py test_*.py *_tests.py
[coverage:run]
branch = True
source = extra_views
[flake8]
max-complexity = 10
exclude = extra_views_tests/migrations/, .tox/, build/lib/, docs
ignore = W191, W503, E203
max-line-length = 88
[isort]
default_section = THIRDPARTY
known_first_party = extra_views
skip = .tox/
# black compatibility, as per
# https://black.readthedocs.io/en/stable/the_black_code_style.html?highlight=.isort.cfg#how-black-wraps-lines
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
|