Files
pillar-python-sdk/tox.ini
Sybren A. Stüvel 49edc1e3ad Fix compatibility with Tox
This may require you to delete your `.tox` directory for a clean run.
2019-05-10 14:07:20 +02:00

25 lines
476 B
INI

[tox]
# Environment changes have to be manually synced with '.travis.yml'.
# py35: Blender 2.79b release
# py36: Blender Cloud
# py37: Blender 2.80
envlist = py35,py36,py37
skipsdist = True
[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