25 lines
476 B
INI
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
|