Skip to content

Commit f73b807

Browse files
committed
Update snippet
1 parent 11dafd3 commit f73b807

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
[tox]
2-
envlist = ruff,format,py,behave
2+
envlist = ruff,format,py
33

44
[testenv]
5+
description = Unit tests and test coverage
56
deps =
67
coverage[toml]
78
pytest
89
commands =
910
coverage run -m pytest {posargs}
1011
coverage report
1112

12-
[testenv:behave]
13-
deps = behave
14-
commands = behave {posargs}
15-
1613
[testenv:format]
14+
description = Ensure consistent code style
1715
skip_install = true
1816
deps = ruff
1917
commands = ruff format {posargs:--check --diff .}
2018

2119
[testenv:ruff]
20+
description = Lightening-fast linting for Python
2221
skip_install = true
2322
deps = ruff
2423
commands = ruff check {posargs:--show-source .}

0 commit comments

Comments
 (0)