mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
23 lines
448 B
INI
23 lines
448 B
INI
[tox]
|
|
envlist = py27,py36,pypy,{py27,py36}-flake8
|
|
skipsdist=True
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
mock
|
|
hypothesis
|
|
|
|
commands = pytest --cov {posargs}
|
|
|
|
passenv =
|
|
HYPOTHESIS_PROFILE
|
|
|
|
[testenv:py27-flake8]
|
|
deps = -rrequirements_flake8.txt
|
|
commands = flake8 --append-config={toxinidir}/py27-flake8.ini {posargs}
|
|
|
|
[testenv:py36-flake8]
|
|
deps = -rrequirements_flake8.txt
|
|
commands = flake8 --append-config={toxinidir}/py36-flake8.ini {posargs}
|