Python 3.5 is EOL already, and Blender never used version 3.6 (it went straight to 3.7), hence 3.6 was never tested explicitly. Python 3.7 or newer is required from now on.
10 lines
156 B
INI
10 lines
156 B
INI
[tox]
|
|
isolated_build = true
|
|
envlist = py37, py38, py39
|
|
|
|
[testenv]
|
|
whitelist_externals = poetry
|
|
commands=
|
|
poetry install
|
|
poetry run py.test --no-cov
|