File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,12 @@ Then this package itself
26
26
pip install -e .
27
27
28
28
This install the package in development mode, making it importable globally and allowing
29
- you to edit the code and directly use the updated version.
29
+ you to edit the code and directly use the updated version. To see a list of all
30
+ supported tox environments please use
31
+
32
+ .. code-block :: bash
33
+
34
+ tox -av
30
35
31
36
Running the tests
32
37
-----------------
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ lint_folders =
12
12
13
13
14
14
[testenv:build]
15
- # builds the package and checks integrity
15
+ description = Builds the package and checks integrity
16
16
17
17
usedevelop = true
18
18
deps =
@@ -29,6 +29,7 @@ commands =
29
29
check-manifest {toxinidir}
30
30
31
31
[testenv:tests]
32
+ description = Runs the tests
32
33
usedevelop = true
33
34
changedir = tests
34
35
deps =
@@ -51,6 +52,7 @@ commands_post =
51
52
coverage xml
52
53
53
54
[testenv:lint]
55
+ description = Checks the code and doc for programmatic and stylistic errors
54
56
skip_install = true
55
57
deps =
56
58
black
@@ -87,6 +89,7 @@ commands =
87
89
isort {[tox]lint_folders}
88
90
89
91
[testenv:docs]
92
+ description = Builds the documentation
90
93
usedevelop = true
91
94
deps =
92
95
-r docs/requirements.txt
You can’t perform that action at this time.
0 commit comments