poetry-core/tox.ini

23 lines
406 B
INI
Raw Permalink Normal View History

2023-02-10 13:58:37 +08:00
[tox]
minversion = 3.3.0
isolated_build = True
envlist = py37, py38, py39, py310, pypy3, integration
[testenv]
whitelist_externals = poetry
skip_install = true
commands =
poetry install -v
poetry run pytest {posargs} tests/
[testenv:integration]
basepython = python3
skip_install = false
deps =
pytest
build
virtualenv
commands =
pytest --integration {posargs} tests/integration