dosage/tox.ini
Tobias Gruetzmacher 855e4d0614 Remove pytest-xdist in CI builds
It doesn't speed up tests that much and seems to conflict with coverage
in Python 3.7
2019-01-04 00:30:31 +01:00

40 lines
873 B
INI

[tox]
envlist = py27, py34, py35, py36, py37, flake8
[testenv]
commands =
{envbindir}/py.test --tb=short \
--junitxml={toxworkdir}/junit-{envname}.xml \
--cov=dosagelib --cov-config=tox.ini --cov-branch \
--cov-report=term \
--cov-report=xml:{toxworkdir}/cov-{envname}.xml \
--cov-report=html:{toxworkdir}/cov-{envname} \
{posargs}
passenv = CI TRAVIS TRAVIS_*
deps =
pytest-travis-fold
# Also install extra dependencies for tests.
extras =
css
dimensions
test
[testenv:flake8]
commands =
- {envbindir}/flake8
deps =
flake8
flake8-coding
flake8-future-import
[flake8]
# we aim for 79, but this suppresses warnings for now...
max-line-length = 120
ignore = E127,E128,E241,FI12,FI14,FI15,FI50,FI51,FI53,FI54,FI55
require-code = True
min-version = 2.7
[pytest]
filterwarnings = default