diff options
author | Rohit Sanjay <sanjay.rohit2@gmail.com> | 2020-07-13 00:59:15 +0530 |
---|---|---|
committer | Rohit Sanjay <sanjay.rohit2@gmail.com> | 2020-07-13 00:59:15 +0530 |
commit | cf8fdf8fdfce1a12c03f319ad1b7b9b50262cb06 (patch) | |
tree | 5c6b2b248d327594ddc945e8dab2bf81e4ec5acd | |
parent | ea8713e6862f98021863bed461a341cef7972978 (diff) | |
download | numpy-cf8fdf8fdfce1a12c03f319ad1b7b9b50262cb06.tar.gz |
DOC: removed all nose decorators
-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 --------------------------------------------- |