Update tox.ini for poetry

This commit is contained in:
Michał Górny 2021-04-24 12:49:13 +02:00
parent f513abd35f
commit 5b666af37a
1 changed files with 2 additions and 6 deletions

View File

@ -8,11 +8,8 @@ isolated_build = True
[testenv]
description = Run unit-testing
# develop temporary disabled as project packaging does not work with it yet:
# https://github.com/willmcgugan/rich/issues/345
usedevelop = False
deps =
-r requirements-dev.txt
poetry
# do not put * in passenv as it may break builds due to reduced isolation
passenv =
CI
@ -25,8 +22,7 @@ setenv =
PYTHONDONTWRITEBYTECODE=1
PYTHONUNBUFFERED=1
commands =
# failsafe as older pip may install incompatible dependencies
pip check
poetry install
pytest --cov-report term-missing --cov=rich tests/ {posargs}
[testenv:lint]