2015-06-16 05:28:31 +08:00
======
pytest
======
The `` pytest `` testing tool makes it easy to write small tests, yet
scales to support complex functional testing.
2015-06-16 06:40:49 +08:00
.. image :: https://coveralls.io/repos/pytest-dev/pytest/badge.png?branch=master
:target: https://coveralls.io/r/pytest-dev/pytest
2014-11-24 16:48:09 +08:00
.. image :: https://pypip.in/v/pytest/badge.png
2014-11-23 13:20:01 +08:00
:target: https://pypi.python.org/pypi/pytest
2013-10-02 18:09:19 +08:00
2013-10-24 21:08:50 +08:00
Documentation: http://pytest.org/latest/
2013-10-02 18:09:19 +08:00
Changelog: http://pytest.org/latest/changelog.html
2015-06-16 05:28:31 +08:00
Issues: https://github.com/pytest-dev/pytest/issues
2013-10-24 21:08:50 +08:00
2015-02-27 19:27:40 +08:00
CI: https://drone.io/bitbucket.org/pytest-dev/pytest
2014-04-02 18:11:35 +08:00
2015-06-16 05:28:31 +08:00
Features
--------
2008-08-18 23:08:39 +08:00
2012-11-20 21:24:26 +08:00
- `auto-discovery
<http://pytest.org/latest/goodpractises.html#python-test-discovery>`_
of test modules and functions,
- detailed info on failing `assert statements <http://pytest.org/latest/assert.html> `_ (no need to remember `` self.assert* `` names)
- `modular fixtures <http://pytest.org/latest/fixture.html> `_ for
managing small or parametrized long-lived test resources.
2014-01-18 19:31:33 +08:00
- multi-paradigm support: you can use `` pytest `` to run test suites based
2012-11-20 21:24:26 +08:00
on `unittest <http://pytest.org/latest/unittest.html> `_ (or trial),
`nose <http://pytest.org/latest/nose.html> `_
2014-09-09 17:22:39 +08:00
- single-source compatibility from Python2.6 all the way up to
Python3.4, PyPy-2.3, (jython-2.5 untested)
2012-11-20 21:24:26 +08:00
- many `external plugins <http://pytest.org/latest/plugins.html#installing-external-plugins-searching> `_ .
2015-06-16 05:28:31 +08:00
A simple example for a test:
.. code-block :: python
2012-11-20 21:24:26 +08:00
# content of test_module.py
def test_function():
i = 4
assert i == 3
which can be run with `` py.test test_module.py `` . See `getting-started <http://pytest.org/latest/getting-started.html#our-first-test-run> `_ for more examples.
For much more info, including PDF docs, see
http://pytest.org
and report bugs at:
2015-06-16 05:28:31 +08:00
https://github.com/pytest-dev/pytest/issues
2012-11-20 21:24:26 +08:00
2014-01-29 16:00:14 +08:00
and checkout or fork repo at:
2013-07-24 18:14:53 +08:00
2015-06-16 05:28:31 +08:00
https://github.com/pytest-dev/pytest
2013-07-24 18:14:53 +08:00
2014-01-29 16:00:14 +08:00
Copyright Holger Krekel and others, 2004-2014
2013-08-01 15:31:34 +08:00
Licensed under the MIT license.