Skip to content

Commit 2d820ec

Browse files
hugovkjugmac00
andauthored
Fix badge link and code formatting (#2053)
* Fix badge link and code formatting And fix some typos. * Update CONTRIBUTORS * Update CONTRIBUTORS Co-authored-by: Jürgen Gmach <[email protected]> Co-authored-by: Jürgen Gmach <[email protected]>
1 parent a0f0572 commit 2d820ec

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Gleb Nikonorov
4141
Gonéri Le Bouder
4242
Hazal Ozturk
4343
Henk-Jaap Wagenaar
44+
Hugo van Kemenade
4445
Ian Stapleton Cordasco
4546
Igor Duarte Cardoso
4647
Ilya Kulakov

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![PyPI](https://img.shields.io/pypi/v/tox?style=flat-square)
1+
[![PyPI](https://img.shields.io/pypi/v/tox?style=flat-square)](https://pypi.org/project/tox/)
22
[![Supported Python
33
versions](https://img.shields.io/pypi/pyversions/tox.svg)](https://pypi.org/project/tox/)
44
[![Azure Pipelines build
@@ -33,7 +33,7 @@ the configuration.
3333

3434
To test a simple project that has some tests, here is an example with a `tox.ini` in the root of the project:
3535

36-
```{.sourceCode .ini}
36+
```ini
3737
[tox]
3838
envlist = py37,py38
3939

@@ -42,7 +42,7 @@ deps = pytest
4242
commands = pytest
4343
```
4444

45-
```{.sourceCode .console}
45+
```console
4646
$ tox
4747

4848
[lots of output from what tox does]
@@ -54,7 +54,7 @@ __________________ summary _________________
5454
congratulations :)
5555
```
5656

57-
tox created two `testenvs` - one based on Python3.7 and one based on Python3.8, it installed pytest in them and ran the
57+
tox created two `testenvs` - one based on Python 3.7 and one based on Python 3.8, it installed pytest in them and ran the
5858
tests. The report at the end summarizes which `testenvs` have failed and which have succeeded.
5959

6060
**Note:** To learn more about what you can do with tox, have a look at
@@ -63,7 +63,7 @@ tests. The report at the end summarizes which `testenvs` have failed and which h
6363

6464
### How it works
6565

66-
tox creates virtual environments for all configured so called `testenvs`, it then installs the project and other
66+
tox creates virtual environments for all configured so-called `testenvs`, it then installs the project and other
6767
necessary dependencies and runs the configured set of commands. See
6868
[system overview](https://tox.readthedocs.io/en/latest/#system-overview) for more details.
6969

@@ -79,7 +79,7 @@ necessary dependencies and runs the configured set of commands. See
7979
- creating development environments
8080
- running static code analysis and test tools
8181
- automating package builds
82-
- running tests against the package build by tox
82+
- running tests against the package built by tox
8383
- checking that packages install correctly with different Python versions/interpreters
8484
- unifying Continuous Integration and command line based testing
8585
- building and deploying project documentation

0 commit comments

Comments
 (0)