23 lines
436 B
INI
23 lines
436 B
INI
[tox]
|
|
# Environment changes have to be manually synced with '.travis.yml'.
|
|
envlist = py27,py35,py36,py37
|
|
|
|
[pytest]
|
|
;addopts = -v --cov pillarsdk --cov-report term-missing
|
|
addopts = -v --cov-report term-missing
|
|
|
|
[testenv]
|
|
commands=py.test []
|
|
deps=coverage >=3.5
|
|
PyTest
|
|
pytest-xdist
|
|
pytest-cov
|
|
responses
|
|
|
|
; For now we skip doctests.
|
|
;[testenv:py35]
|
|
;commands=py.test --doctest-modules []
|
|
|
|
[pep8]
|
|
max-line-length = 100
|