2011-11-12 06:56:06 +08:00
2011-11-19 02:32:11 +08:00
.. _`mark examples`:
2011-11-12 06:56:06 +08:00
Working with custom markers
=================================================
Here are some example using the :ref:`mark` mechanism.
2011-12-05 18:10:48 +08:00
Marking test functions and selecting them for a run
2011-11-19 02:32:11 +08:00
----------------------------------------------------
You can "mark" a test function with custom metadata like this::
# content of test_server.py
import pytest
@pytest.mark.webtest
def test_send_http():
pass # perform some webtest test for your app
def test_something_quick():
pass
2012-11-09 19:40:48 +08:00
def test_another():
pass
2011-11-19 02:32:11 +08:00
.. versionadded:: 2.2
You can then restrict a test run to only run tests marked with ``webtest``::
$ py.test -v -m webtest
2012-02-06 07:33:04 +08:00
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6 -- /home/hpk/p/pytest/.tox/regen/bin/python
2012-11-09 19:40:48 +08:00
collecting ... collected 3 items
2011-11-19 02:32:11 +08:00
test_server.py:3: test_send_http PASSED
2012-11-09 19:40:48 +08:00
=================== 2 tests deselected by "-m 'webtest'" ===================
================== 1 passed, 2 deselected in 0.01 seconds ==================
2011-11-19 02:32:11 +08:00
Or the inverse, running all tests except the webtest ones::
$ py.test -v -m "not webtest"
2012-02-06 07:33:04 +08:00
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6 -- /home/hpk/p/pytest/.tox/regen/bin/python
2012-11-09 19:40:48 +08:00
collecting ... collected 3 items
2011-11-19 02:32:11 +08:00
test_server.py:6: test_something_quick PASSED
2012-11-09 19:40:48 +08:00
test_server.py:8: test_another PASSED
2011-11-19 02:32:11 +08:00
2012-02-06 07:33:04 +08:00
================= 1 tests deselected by "-m 'not webtest'" =================
2012-11-20 20:42:00 +08:00
================== 2 passed, 1 deselected in 0.01 seconds ==================
2012-11-09 19:40:48 +08:00
Using ``-k expr`` to select tests based on their name
-------------------------------------------------------
.. versionadded: 2.0/2.3.4
You can use the ``-k`` command line option to specify an expression
which implements a substring match on the test names instead of the
exact match on markers that ``-m`` provides. This makes it easy to
select tests based on their names::
$ py.test -v -k http # running with the above defined example module
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6 -- /home/hpk/p/pytest/.tox/regen/bin/python
2012-11-09 19:40:48 +08:00
collecting ... collected 3 items
test_server.py:3: test_send_http PASSED
2012-11-20 20:42:00 +08:00
====================== 2 tests deselected by '-khttp' ======================
2012-11-09 19:40:48 +08:00
================== 1 passed, 2 deselected in 0.01 seconds ==================
And you can also run all tests except the ones that match the keyword::
$ py.test -k "not send_http" -v
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6 -- /home/hpk/p/pytest/.tox/regen/bin/python
2012-11-09 19:40:48 +08:00
collecting ... collected 3 items
test_server.py:6: test_something_quick PASSED
test_server.py:8: test_another PASSED
================= 1 tests deselected by '-knot send_http' ==================
================== 2 passed, 1 deselected in 0.01 seconds ==================
Or to select "http" and "quick" tests::
$ py.test -k "http or quick" -v
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6 -- /home/hpk/p/pytest/.tox/regen/bin/python
2012-11-09 19:40:48 +08:00
collecting ... collected 3 items
test_server.py:3: test_send_http PASSED
test_server.py:6: test_something_quick PASSED
================= 1 tests deselected by '-khttp or quick' ==================
================== 2 passed, 1 deselected in 0.01 seconds ==================
2011-11-19 02:32:11 +08:00
Registering markers
-------------------------------------
.. versionadded:: 2.2
.. ini-syntax for custom markers:
Registering markers for your test suite is simple::
# content of pytest.ini
[pytest]
2011-12-05 18:10:48 +08:00
markers =
webtest: mark a test as a webtest.
2011-11-19 02:32:11 +08:00
You can ask which markers exist for your test suite - the list includes our just defined ``webtest`` markers::
$ py.test --markers
@pytest.mark.webtest: mark a test as a webtest.
2012-10-20 20:05:33 +08:00
@pytest.mark.skipif(condition): skip the given test function if eval(condition) results in a True value. Evaluation happens within the module global context. Example: skipif('sys.platform == "win32"') skips the test if we are on the win32 platform. see http://pytest.org/latest/skipping.html
2011-11-19 02:32:11 +08:00
2012-10-20 20:05:33 +08:00
@pytest.mark.xfail(condition, reason=None, run=True): mark the the test function as an expected failure if eval(condition) has a True value. Optionally specify a reason for better reporting and run=False if you don't even want to execute the test function. See http://pytest.org/latest/skipping.html
2011-11-19 02:32:11 +08:00
2012-10-20 20:05:33 +08:00
@pytest.mark.parametrize(argnames, argvalues): call a test function multiple times passing in multiple different argument value sets. Example: @parametrize('arg1', [1,2]) would lead to two calls of the decorated test function, one with arg1=1 and another with arg1=2. see http://pytest.org/latest/parametrize.html for more info and examples.
2011-11-19 02:32:11 +08:00
2012-10-20 20:05:33 +08:00
@pytest.mark.usefixtures(fixturename1, fixturename2, ...): mark tests as needing all of the specified fixtures. see http://pytest.org/latest/fixture.html#usefixtures
2012-10-19 16:53:28 +08:00
2011-11-19 02:32:11 +08:00
@pytest.mark.tryfirst: mark a hook implementation function such that the plugin machinery will try to call it first/as early as possible.
@pytest.mark.trylast: mark a hook implementation function such that the plugin machinery will try to call it last/as late as possible.
2011-12-05 18:10:48 +08:00
For an example on how to add and work with markers from a plugin, see
2011-11-19 02:32:11 +08:00
:ref:`adding a custom marker from a plugin`.
.. note::
It is recommended to explicitely register markers so that:
* there is one place in your test suite defining your markers
* asking for existing markers via ``py.test --markers`` gives good output
* typos in function markers are treated as an error if you use
the ``--strict`` option. Later versions of py.test are probably
going to treat non-registered markers as an error.
.. _`scoped-marking`:
Marking whole classes or modules
----------------------------------------------------
2011-12-05 18:10:48 +08:00
If you are programming with Python 2.6 or later you may use ``pytest.mark``
decorators with classes to apply markers to all of its test methods::
2011-11-19 02:32:11 +08:00
# content of test_mark_classlevel.py
import pytest
@pytest.mark.webtest
class TestClass:
def test_startup(self):
pass
def test_startup_and_more(self):
pass
This is equivalent to directly applying the decorator to the
two test functions.
2011-12-05 18:10:48 +08:00
To remain backward-compatible with Python 2.4 you can also set a
2011-11-19 02:32:11 +08:00
``pytestmark`` attribute on a TestClass like this::
import pytest
class TestClass:
pytestmark = pytest.mark.webtest
or if you need to use multiple markers you can use a list::
import pytest
class TestClass:
pytestmark = [pytest.mark.webtest, pytest.mark.slowtest]
You can also set a module level marker::
import pytest
pytestmark = pytest.mark.webtest
in which case it will be applied to all functions and
methods defined in the module.
2011-12-28 23:47:18 +08:00
2011-11-19 02:32:11 +08:00
2011-11-12 06:56:06 +08:00
.. _`adding a custom marker from a plugin`:
2011-12-05 18:10:48 +08:00
Custom marker and command line option to control test runs
2011-11-12 06:56:06 +08:00
----------------------------------------------------------
2011-11-19 05:26:38 +08:00
.. regendoc:wipe
2011-11-12 06:56:06 +08:00
Plugins can provide custom markers and implement specific behaviour
based on it. This is a self-contained example which adds a command
line option and a parametrized test function marker to run tests
specifies via named environments::
# content of conftest.py
import pytest
def pytest_addoption(parser):
2012-11-06 21:09:12 +08:00
parser.addoption("-E", action="store", metavar="NAME",
2011-11-12 06:56:06 +08:00
help="only run tests matching the environment NAME.")
def pytest_configure(config):
# register an additional marker
2011-12-05 18:10:48 +08:00
config.addinivalue_line("markers",
2011-11-12 06:56:06 +08:00
"env(name): mark test to run only on named environment")
def pytest_runtest_setup(item):
2012-10-18 19:52:32 +08:00
envmarker = item.keywords.get("env", None)
2012-09-17 23:32:23 +08:00
if envmarker is not None:
2011-11-12 06:56:06 +08:00
envname = envmarker.args[0]
2012-11-06 21:09:12 +08:00
if envname != item.config.getoption("-E"):
2011-11-12 06:56:06 +08:00
pytest.skip("test requires env %r" % envname)
A test file using this local plugin::
# content of test_someenv.py
import pytest
@pytest.mark.env("stage1")
def test_basic_db_operation():
pass
and an example invocations specifying a different environment than what
the test needs::
$ py.test -E stage2
2012-02-06 07:33:04 +08:00
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
2012-10-07 19:06:17 +08:00
collected 1 items
2011-11-12 06:56:06 +08:00
test_someenv.py s
2012-10-25 19:48:31 +08:00
======================== 1 skipped in 0.01 seconds =========================
2011-11-12 06:56:06 +08:00
and here is one that specifies exactly the environment needed::
$ py.test -E stage1
2012-02-06 07:33:04 +08:00
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
2012-10-07 19:06:17 +08:00
collected 1 items
2011-11-12 06:56:06 +08:00
test_someenv.py .
2012-10-25 19:48:31 +08:00
========================= 1 passed in 0.01 seconds =========================
2011-11-12 06:56:06 +08:00
The ``--markers`` option always gives you a list of available markers::
$ py.test --markers
@pytest.mark.env(name): mark test to run only on named environment
2012-10-20 20:05:33 +08:00
@pytest.mark.skipif(condition): skip the given test function if eval(condition) results in a True value. Evaluation happens within the module global context. Example: skipif('sys.platform == "win32"') skips the test if we are on the win32 platform. see http://pytest.org/latest/skipping.html
2011-11-12 06:56:06 +08:00
2012-10-20 20:05:33 +08:00
@pytest.mark.xfail(condition, reason=None, run=True): mark the the test function as an expected failure if eval(condition) has a True value. Optionally specify a reason for better reporting and run=False if you don't even want to execute the test function. See http://pytest.org/latest/skipping.html
2011-11-12 06:56:06 +08:00
2012-10-20 20:05:33 +08:00
@pytest.mark.parametrize(argnames, argvalues): call a test function multiple times passing in multiple different argument value sets. Example: @parametrize('arg1', [1,2]) would lead to two calls of the decorated test function, one with arg1=1 and another with arg1=2. see http://pytest.org/latest/parametrize.html for more info and examples.
2011-11-19 02:32:11 +08:00
2012-10-20 20:05:33 +08:00
@pytest.mark.usefixtures(fixturename1, fixturename2, ...): mark tests as needing all of the specified fixtures. see http://pytest.org/latest/fixture.html#usefixtures
2012-10-19 16:53:28 +08:00
2011-11-12 06:56:06 +08:00
@pytest.mark.tryfirst: mark a hook implementation function such that the plugin machinery will try to call it first/as early as possible.
@pytest.mark.trylast: mark a hook implementation function such that the plugin machinery will try to call it last/as late as possible.
2012-09-17 23:32:23 +08:00
2011-11-12 06:56:06 +08:00
2011-12-28 23:47:18 +08:00
Reading markers which were set from multiple places
----------------------------------------------------
.. versionadded: 2.2.2
2012-06-11 22:24:42 +08:00
.. regendoc:wipe
2011-12-28 23:47:18 +08:00
If you are heavily using markers in your test suite you may encounter the case where a marker is applied several times to a test function. From plugin
code you can read over all such settings. Example::
# content of test_mark_three_times.py
import pytest
pytestmark = pytest.mark.glob("module", x=1)
@pytest.mark.glob("class", x=2)
class TestClass:
@pytest.mark.glob("function", x=3)
def test_something(self):
pass
Here we have the marker "glob" applied three times to the same
test function. From a conftest file we can read it like this::
# content of conftest.py
2012-06-06 22:34:13 +08:00
import sys
2011-12-28 23:47:18 +08:00
def pytest_runtest_setup(item):
2012-10-18 19:52:32 +08:00
g = item.keywords.get("glob", None)
2011-12-28 23:47:18 +08:00
if g is not None:
for info in g:
print ("glob args=%s kwargs=%s" %(info.args, info.kwargs))
2012-06-06 22:34:13 +08:00
sys.stdout.flush()
2011-12-28 23:47:18 +08:00
Let's run this without capturing output and see what we get::
$ py.test -q -s
glob args=('function',) kwargs={'x': 3}
glob args=('class',) kwargs={'x': 2}
2012-02-06 07:33:04 +08:00
glob args=('module',) kwargs={'x': 1}
2012-06-06 22:34:13 +08:00
.
marking platform specific tests with pytest
--------------------------------------------------------------
2012-06-11 22:24:42 +08:00
.. regendoc:wipe
2012-06-06 22:34:13 +08:00
Consider you have a test suite which marks tests for particular platforms,
namely ``pytest.mark.osx``, ``pytest.mark.win32`` etc. and you
also have tests that run on all platforms and have no specific
marker. If you now want to have a way to only run the tests
for your particular platform, you could use the following plugin::
# content of conftest.py
#
import sys
import pytest
ALL = set("osx linux2 win32".split())
def pytest_runtest_setup(item):
if isinstance(item, item.Function):
plat = sys.platform
2012-10-18 19:52:32 +08:00
if plat not in item.keywords:
if ALL.intersection(item.keywords):
2012-06-06 22:34:13 +08:00
pytest.skip("cannot run on platform %s" %(plat))
then tests will be skipped if they were specified for a different platform.
Let's do a little test file to show how this looks like::
# content of test_plat.py
import pytest
@pytest.mark.osx
def test_if_apple_is_evil():
pass
@pytest.mark.linux2
def test_if_linux_works():
pass
@pytest.mark.win32
def test_if_win32_crashes():
pass
def test_runs_everywhere():
pass
then you will see two test skipped and two executed tests as expected::
$ py.test -rs # this option reports skip reasons
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
2012-10-07 19:06:17 +08:00
collected 4 items
2012-06-06 22:34:13 +08:00
test_plat.py s.s.
========================= short test summary info ==========================
2012-11-20 20:42:00 +08:00
SKIP [2] /tmp/doc-exec-69/conftest.py:12: cannot run on platform linux2
2012-06-06 22:34:13 +08:00
2012-11-20 20:42:00 +08:00
=================== 2 passed, 2 skipped in 0.01 seconds ====================
2012-06-06 22:34:13 +08:00
Note that if you specify a platform via the marker-command line option like this::
$ py.test -m linux2
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
2012-10-07 19:06:17 +08:00
collected 4 items
2012-06-06 22:34:13 +08:00
test_plat.py .
=================== 3 tests deselected by "-m 'linux2'" ====================
2012-11-20 20:42:00 +08:00
================== 1 passed, 3 deselected in 0.01 seconds ==================
2012-06-06 22:34:13 +08:00
then the unmarked-tests will not be run. It is thus a way to restrict the run to the specific tests.
2012-11-09 19:40:48 +08:00
Automatically adding markers based on test names
--------------------------------------------------------
.. regendoc:wipe
If you a test suite where test function names indicate a certain
type of test, you can implement a hook that automatically defines
markers so that you can use the ``-m`` option with it. Let's look
at this test module::
# content of test_module.py
def test_interface_simple():
assert 0
def test_interface_complex():
assert 0
def test_event_simple():
assert 0
def test_something_else():
assert 0
We want to dynamically define two markers and can do it in a
``conftest.py`` plugin::
# content of conftest.py
import pytest
def pytest_collection_modifyitems(items):
for item in items:
if "interface" in item.nodeid:
item.keywords["interface"] = pytest.mark.interface
elif "event" in item.nodeid:
item.keywords["event"] = pytest.mark.event
We can now use the ``-m option`` to select one set::
$ py.test -m interface --tb=short
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
2012-11-09 19:40:48 +08:00
collected 4 items
test_module.py FF
================================= FAILURES =================================
__________________________ test_interface_simple ___________________________
test_module.py:3: in test_interface_simple
> assert 0
E assert 0
__________________________ test_interface_complex __________________________
test_module.py:6: in test_interface_complex
> assert 0
E assert 0
================== 2 tests deselected by "-m 'interface'" ==================
2012-11-20 20:42:00 +08:00
================== 2 failed, 2 deselected in 0.01 seconds ==================
2012-11-09 19:40:48 +08:00
or to select both "event" and "interface" tests::
$ py.test -m "interface or event" --tb=short
=========================== test session starts ============================
2012-11-20 20:42:00 +08:00
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
2012-11-09 19:40:48 +08:00
collected 4 items
test_module.py FFF
================================= FAILURES =================================
__________________________ test_interface_simple ___________________________
test_module.py:3: in test_interface_simple
> assert 0
E assert 0
__________________________ test_interface_complex __________________________
test_module.py:6: in test_interface_complex
> assert 0
E assert 0
____________________________ test_event_simple _____________________________
test_module.py:9: in test_event_simple
> assert 0
E assert 0
============= 1 tests deselected by "-m 'interface or event'" ==============
2012-11-20 20:42:00 +08:00
================== 3 failed, 1 deselected in 0.01 seconds ==================