Skip to content

Commit f8c385a

Browse files
authored
Update tox.rst
1 parent cba03b4 commit f8c385a

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

Users/tox.rst

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ for:
1111
- acting as a frontend to Continuous Integration servers, greatly reducing
1212
boilerplate and merging CI and shell-based testing.
1313

14-
15-
taken from `tox.readthedocs.io <https://tox.readthedocs.io/en/latest/>`__.
14+
taken from `tox.readthedocs.io
15+
<https://tox.readthedocs.io/en/latest/>`_.
1616

1717
Basic example.
1818
----------------------------------------------------------------
@@ -26,19 +26,19 @@ right next to your setup.py file:
2626
# content of: tox.ini , put in same dir as setup.py
2727
[tox]
2828
envlist = py27,py36
29-
3029
[testenv]
3130
deps = pytest # install pytest in the virtualenv where commands
3231
will be executed
3332
commands =
3433
# whatever extra steps before testing might be necessary
3534
pytest # or any other test runner that you might use
3635
36+
.. Note ::
37+
3738
Note
3839

3940
You can also try generating a tox.ini file automatically, by running
4041
tox-quickstart and then answering a few simple questions.
41-
4242
To sdist-package, install and test your project against Python2.7 and
4343
Python3.6, just type:
4444

@@ -55,11 +55,8 @@ re-install dependencies.
5555
You also might want to checkout tox configuration and usage examples to get
5656
some more ideas.
5757

58-
.. _tox_sections:
59-
6058
Sections
6159
--------
62-
6360
The ``tox.ini`` file has a number of top level sections defined by ``[ ]``
6461
and subsections within those. For complete documentation
6562
on all subsections inside of a tox section please refer to the tox
@@ -87,9 +84,6 @@ documentation.
8784
``tox.ini`` and reuse commands while tweaking certain sections per testing
8885
scenario.
8986

90-
91-
.. _tox_environments:
92-
9387
Modifying or Adding environments
9488
--------------------------------
9589

@@ -116,6 +110,5 @@ To ensure that all the new tests that are created by adding the luminous
116110

117111
Note
118112

119-
120113
For more information about Tox configuration, consult the
121-
`official documentation <https://tox.readthedocs.io/en/latest/>`__.
114+
`official documentation <https://tox.readthedocs.io/en/latest/>`_.

0 commit comments

Comments
 (0)