All the Blender Institute Python webprojects are moving to Poetry; it works better than Pipenv in various regards.
10 lines
150 B
INI
10 lines
150 B
INI
[tox]
|
|
isolated_build = true
|
|
envlist = py35, py37
|
|
|
|
[testenv]
|
|
whitelist_externals = poetry
|
|
commands=
|
|
poetry install
|
|
poetry run py.test --no-cov
|