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