Skip to content

Commit 3a2a852

Browse files
authored
Merge pull request #499 from kianmeng/give-description-to-tox-environments
Give description to tox environments
2 parents 06bbfd5 + ee18ab0 commit 3a2a852

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: tox.ini

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist=py27,py34,py35,py36,py37,py38,py39,py310,pypy,pypy3,docs,readme,black
33

44
[testenv]
5+
description=run test on {basepython}
56
deps=
67
-r{toxinidir}/requirements-test.txt
78
commands=coverage run --source=requests_oauthlib -m unittest discover
@@ -18,6 +19,7 @@ deps=
1819
# tox -e docs to mimic readthedocs build.
1920
# should be similar to .readthedocs.yaml pipeline
2021
[testenv:docs]
22+
description=mimic readthedocs build
2123
basepython=python3.7
2224
skipsdist=True
2325
deps=
@@ -28,12 +30,14 @@ commands=make clean html
2830

2931
# tox -e readme to mimic pypi validation of readme/rst files.
3032
[testenv:readme]
33+
description=mimic pypi validation of readme/rst files
3134
basepython=python3.7
3235
deps=twine>=1.12.0
3336
commands=
3437
twine check .tox/dist/*
3538

3639
[testenv:black]
40+
description=show diff of code format
3741
basepython=python3.7
3842
deps=black
3943
commands=black --check --diff .

0 commit comments

Comments
 (0)