@@ -9,7 +9,7 @@ configuration when using [tox](https://tox.readthedocs.org) to drive your CI.
99
1010It is suggested to use a generic name, such as ` github ` so forks can also configure the same.
1111
12- You can find this in ` Project Settings ` => ` Service connections ` in the Azure Devops dashboard for your project.
12+ You can find this in ` Project Settings ` => ` Service connections ` in the Azure Devops dashboard for your project.
1313Project settings is located in the bottom left corner of the UI as of 2019-04-30. Below I'm using the endpoint name
1414` github ` .
1515
@@ -30,7 +30,7 @@ this will make the templates in this repository available in the `tox` namespace
3030# job templates
3131
3232# # `run-tox-env.yml`
33- This job template will run tox for a given set of tox targets on given platform (new in `0.1`).
33+ This job template will run tox for a given set of tox targets on given platform (new in `0.1`).
3434Features and functionality :
3535
3636- each specified toxenv target maps to a single Azure Pipelines job
@@ -46,7 +46,7 @@ Features and functionality:
4646The following example will run `py36` and `py37` on Windows, Linux and MacOs. It will also invoke
4747` fix_lint` and `docs` target with `python3.7` on Linux. Note how the root level name can be used
4848to automatically specify the target platform (defaults to Linux).
49-
49+
5050` ` ` yaml
5151jobs:
5252- template: run-tox-env.yml@tox
7575# ## parameters
7676
7777At root level you can control with `tox_version` the tox version specifier to install, this defaults to latest in PyPi
78- (`tox`). Beside this at the root level we have the ``jobs`` key. Inside this you can enlist groups of targets as maps.
78+ (`tox`). Beside this at the root level we have the ``jobs`` key. Inside this you can enlist groups of targets as maps.
7979The key is the name of the group. The values configure the target :
80-
80+
8181- `toxenvs` : the list of `tox` environment names to run; must either:
8282 - be equal to : ` py27` , `py34`, `py35`, `py36`, `py37`, `py38`, `jython`, `pypy`, `pypy3`
8383 - start with : ` py27-` , `py34-`, `py35-`, `py36-`, `py37-`, `py38-`, `jython-`, `pypy-`, `pypy3`
@@ -101,7 +101,7 @@ Note, for now:
101101
102102This job template will download coverage files attached to the build (uploaded by `run-tox-env.yml`)
103103and use target tox environment configured to generate a unified report. This then will be uploaded
104- to the Azure Pipelines coverage report.
104+ to the Azure Pipelines coverage report.
105105
106106# ## example
107107
@@ -118,12 +118,12 @@ to the Azure Pipelines coverage report.
118118# ## parameters
119119- ` coverage` - tox target that generates the unified coverage report (default `coverage`)
120120- ` dependsOn` - environments this job depends on
121- - ` tox_version` - the tox version specifier to use, defaults to latest
121+ - ` tox_version` - the tox version specifier to use, defaults to latest
122122
123123# # `publish-pypi.yml`
124124
125125This job template will publish the Python package in the current folder (both sdist and wheel)
126- via the PEP-517/8 build mechanism and twine.
126+ via the PEP-517/8 build mechanism and twine.
127127
128128# ## example
129129
@@ -140,5 +140,5 @@ via the PEP-517/8 build mechanism and twine.
140140
141141# ## parameters
142142- ` external_feed` - the external feed to upload
143- - ` pypi_remote` - the pypi remote to upload to
144- - ` dependsOn` - environments this job depends on
143+ - ` pypi_remote` - the pypi remote to upload to
144+ - ` dependsOn` - environments this job depends on
0 commit comments