|
| 1 | +.. image:: https://badge.fury.io/py/tox.svg |
| 2 | + :target: https://badge.fury.io/py/tox |
| 3 | + :alt: Latest version on PyPI |
| 4 | +.. image:: https://img.shields.io/pypi/pyversions/tox.svg |
| 5 | + :target: https://pypi.org/project/tox/ |
| 6 | + :alt: Supported Python versions |
| 7 | +.. image:: https://dev.azure.com/toxdev/tox/_apis/build/status/tox%20ci?branchName=master |
| 8 | + :target: https://dev.azure.com/toxdev/tox/_build/latest?definitionId=9&branchName=master |
| 9 | + :alt: Azure Pipelines build status |
| 10 | +.. image:: https://api.codeclimate.com/v1/badges/425c19ab2169a35e1c16/test_coverage |
| 11 | + :target: https://codeclimate.com/github/tox-dev/tox/code?sort=test_coverage |
| 12 | + :alt: Test Coverage |
| 13 | +.. image:: https://readthedocs.org/projects/tox/badge/?version=latest&style=flat-square |
| 14 | + :target: https://tox.readthedocs.io/en/latest/?badge=latest |
| 15 | + :alt: Documentation status |
| 16 | +.. image:: https://img.shields.io/badge/code%20style-black-000000.svg |
| 17 | + :target: https://github.com/ambv/black |
| 18 | + :alt: Code style: black |
| 19 | + |
| 20 | +tox automation project |
| 21 | +====================== |
| 22 | + |
| 23 | +**vision: standardize testing in Python** |
| 24 | + |
| 25 | +tox aims to automate and standardize testing in Python. It is part of a larger vision of easing the packaging, testing and release process of Python software. |
| 26 | + |
| 27 | +What is tox? |
| 28 | +============ |
| 29 | + |
| 30 | +tox is a generic virtualenv management and test command line tool you can use for: |
| 31 | + |
| 32 | +* checking your package installs correctly with different Python versions and |
| 33 | + interpreters |
| 34 | + |
| 35 | +* running your tests in each of the environments, configuring your test tool of choice |
| 36 | + |
| 37 | +* acting as a frontend to Continuous Integration servers, greatly |
| 38 | + reducing boilerplate and merging CI and shell-based testing. |
| 39 | + |
| 40 | +For more information and the repository please see: |
| 41 | + |
| 42 | +- home and docs: https://tox.readthedocs.org |
| 43 | + |
| 44 | +- repository: https://github.com/tox-dev/tox |
0 commit comments