Iterate on test structure and documentation

This commit is contained in:
Aleksi Häkli 2021-01-06 15:25:34 +02:00
parent e9a9a3e444
commit e2876506db
No known key found for this signature in database
GPG key ID: 443B5DA7F5CC9F42

View file

@ -17,8 +17,9 @@ DJANGO =
3.0: dj30
3.1: dj31
dev: djdev
qa: qa
qa: djqa
# Normal test environment runs pytest which orchestrates other tools
[testenv]
deps =
-r requirements-test.txt
@ -31,11 +32,13 @@ commands = pytest
setenv =
PYTHONDONTWRITEBYTECODE=1
# Django development version is allowed to fail the test matrix
[testenv:py{36,37,38,39,py3}-dj{dev}]
ignore_errors = true
ignore_outcome = true
[testenv:py38-qa]
# QA runs type checks, linting, and code formatting checks
[testenv:py38-djqa]
deps = -r requirements-qa.txt
commands =
mypy axes