diff options
-rw-r--r-- | doc/TESTS.rst.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/doc/TESTS.rst.txt b/doc/TESTS.rst.txt index fb189fad6..d1af7017b 100644 --- a/doc/TESTS.rst.txt +++ b/doc/TESTS.rst.txt @@ -154,21 +154,6 @@ Similarly for methods:: def test_simple(self): assert_(zzz() == 'Hello from zzz') -As an alternative to ``pytest.mark.<label>``, there are a number of labels you -can use: - -- ``setastest(tf)``: work-around for test discovery when the test name is - non conformant -- ``skipif(condition, msg=None)``: skips the test when ``eval(condition)`` is - ``True`` -- ``knownfailureif(fail_cond, msg=None)``: will avoid running the test if - ``eval(fail_cond)`` is ``True``, useful for tests that conditionally segfault -- ``deprecated(conditional=True)``: filters deprecation warnings emitted in the - test -- ``paramaterize(var, input)``: an alternative to - `pytest.mark.paramaterized - <https://docs.pytest.org/en/latest/parametrize.html>`_ - Easier setup and teardown functions / methods --------------------------------------------- |