@@ -31,7 +31,7 @@ You can then restrict a test run to only run tests marked with ``webtest``::
3131
3232 $ pytest -v -m webtest
3333 ======= test session starts ========
34- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
34+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
3535 cachedir: .cache
3636 rootdir: $REGENDOC_TMPDIR, inifile:
3737 collecting ... collected 4 items
@@ -45,7 +45,7 @@ Or the inverse, running all tests except the webtest ones::
4545
4646 $ pytest -v -m "not webtest"
4747 ======= test session starts ========
48- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
48+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
4949 cachedir: .cache
5050 rootdir: $REGENDOC_TMPDIR, inifile:
5151 collecting ... collected 4 items
@@ -66,7 +66,7 @@ tests based on their module, class, method, or function name::
6666
6767 $ pytest -v test_server.py::TestClass::test_method
6868 ======= test session starts ========
69- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
69+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
7070 cachedir: .cache
7171 rootdir: $REGENDOC_TMPDIR, inifile:
7272 collecting ... collected 5 items
@@ -79,7 +79,7 @@ You can also select on the class::
7979
8080 $ pytest -v test_server.py::TestClass
8181 ======= test session starts ========
82- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
82+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
8383 cachedir: .cache
8484 rootdir: $REGENDOC_TMPDIR, inifile:
8585 collecting ... collected 4 items
@@ -92,7 +92,7 @@ Or select multiple nodes::
9292
9393 $ pytest -v test_server.py::TestClass test_server.py::test_send_http
9494 ======= test session starts ========
95- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
95+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
9696 cachedir: .cache
9797 rootdir: $REGENDOC_TMPDIR, inifile:
9898 collecting ... collected 8 items
@@ -130,7 +130,7 @@ select tests based on their names::
130130
131131 $ pytest -v -k http # running with the above defined example module
132132 ======= test session starts ========
133- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
133+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
134134 cachedir: .cache
135135 rootdir: $REGENDOC_TMPDIR, inifile:
136136 collecting ... collected 4 items
@@ -144,7 +144,7 @@ And you can also run all tests except the ones that match the keyword::
144144
145145 $ pytest -k "not send_http" -v
146146 ======= test session starts ========
147- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
147+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
148148 cachedir: .cache
149149 rootdir: $REGENDOC_TMPDIR, inifile:
150150 collecting ... collected 4 items
@@ -160,7 +160,7 @@ Or to select "http" and "quick" tests::
160160
161161 $ pytest -k "http or quick" -v
162162 ======= test session starts ========
163- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
163+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0 -- $PYTHON_PREFIX/bin/python3.5
164164 cachedir: .cache
165165 rootdir: $REGENDOC_TMPDIR, inifile:
166166 collecting ... collected 4 items
@@ -352,7 +352,7 @@ the test needs::
352352
353353 $ pytest -E stage2
354354 ======= test session starts ========
355- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0
355+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0
356356 rootdir: $REGENDOC_TMPDIR, inifile:
357357 collected 1 items
358358
@@ -364,7 +364,7 @@ and here is one that specifies exactly the environment needed::
364364
365365 $ pytest -E stage1
366366 ======= test session starts ========
367- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0
367+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0
368368 rootdir: $REGENDOC_TMPDIR, inifile:
369369 collected 1 items
370370
@@ -485,7 +485,7 @@ then you will see two test skipped and two executed tests as expected::
485485
486486 $ pytest -rs # this option reports skip reasons
487487 ======= test session starts ========
488- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0
488+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0
489489 rootdir: $REGENDOC_TMPDIR, inifile:
490490 collected 4 items
491491
@@ -499,7 +499,7 @@ Note that if you specify a platform via the marker-command line option like this
499499
500500 $ pytest -m linux2
501501 ======= test session starts ========
502- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0
502+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0
503503 rootdir: $REGENDOC_TMPDIR, inifile:
504504 collected 4 items
505505
@@ -551,7 +551,7 @@ We can now use the ``-m option`` to select one set::
551551
552552 $ pytest -m interface --tb=short
553553 ======= test session starts ========
554- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0
554+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0
555555 rootdir: $REGENDOC_TMPDIR, inifile:
556556 collected 4 items
557557
@@ -573,7 +573,7 @@ or to select both "event" and "interface" tests::
573573
574574 $ pytest -m "interface or event" --tb=short
575575 ======= test session starts ========
576- platform linux -- Python 3.5.2, pytest-3.0.4 , py-1.4.31, pluggy-0.4.0
576+ platform linux -- Python 3.5.2, pytest-3.0.5 , py-1.4.31, pluggy-0.4.0
577577 rootdir: $REGENDOC_TMPDIR, inifile:
578578 collected 4 items
579579
0 commit comments