mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-06 06:32:47 +00:00
21 lines
414 B
INI
21 lines
414 B
INI
[tox]
|
|
envlist = py{37,38,39,310,311}
|
|
skipsdist = {env:TOXBUILD:false}
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.7: py37
|
|
3.8: py38
|
|
3.9: py39
|
|
3.10: py310
|
|
3.11: py311
|
|
|
|
[testenv]
|
|
deps= -rrequirements-test.txt
|
|
commands=
|
|
{env:TOXBUILD:{envpython} setup.py clean --all build_ext --force --inplace}
|
|
{env:TOXBUILD:pytest} --basetemp={envtmpdir} test {posargs}
|
|
|
|
[pytest]
|
|
addopts = -x -v --full-suite --no-rebuild
|