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
1717Basic 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
3940You can also try generating a tox.ini file automatically, by running
4041tox-quickstart and then answering a few simple questions.
41-
4242To sdist-package, install and test your project against Python2.7 and
4343Python3.6, just type:
4444
@@ -55,11 +55,8 @@ re-install dependencies.
5555You also might want to checkout tox configuration and usage examples to get
5656some more ideas.
5757
58- .. _tox_sections :
59-
6058Sections
6159--------
62-
6360The ``tox.ini `` file has a number of top level sections defined by ``[ ] ``
6461and subsections within those. For complete documentation
6562on 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-
9387Modifying or Adding environments
9488--------------------------------
9589
@@ -116,6 +110,5 @@ To ensure that all the new tests that are created by adding the luminous
116110
117111Note
118112
119-
120113For 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