From f73b807bb09da1a109ee0d612a38e7bd45d129bf Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Sun, 19 Nov 2023 23:21:51 +0000 Subject: [PATCH] Update snippet --- tox.ini | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 2f229e5..72c712e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,8 @@ [tox] -envlist = ruff,format,py,behave +envlist = ruff,format,py [testenv] +description = Unit tests and test coverage deps = coverage[toml] pytest @@ -9,16 +10,14 @@ commands = coverage run -m pytest {posargs} coverage report -[testenv:behave] -deps = behave -commands = behave {posargs} - [testenv:format] +description = Ensure consistent code style skip_install = true deps = ruff commands = ruff format {posargs:--check --diff .} [testenv:ruff] +description = Lightening-fast linting for Python skip_install = true deps = ruff commands = ruff check {posargs:--show-source .}