File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ Full pytest documentation
19
19
recwarn
20
20
cache
21
21
plugins
22
+ nose
22
23
23
24
contributing
24
25
talks
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Supported nose Idioms
24
24
* setup and teardown at module/class/method level
25
25
* SkipTest exceptions and markers
26
26
* setup/teardown decorators
27
- * yield-based tests and their setup
27
+ * `` yield `` -based tests and their setup
28
28
* ``__test__ `` attribute on modules/classes/functions
29
29
* general usage of nose utilities
30
30
@@ -51,5 +51,12 @@ Unsupported idioms / known issues
51
51
- nose-style doctests are not collected and executed correctly,
52
52
also doctest fixtures don't work.
53
53
54
- - no nose-configuration is recognized
54
+ - no nose-configuration is recognized.
55
+
56
+ - ``yield ``-based methods don't support ``setup `` properly because
57
+ the ``setup `` method is always called in the same class instance.
58
+ There are no plans to fix this currently because ``yield ``-tests
59
+ are deprecated in pytest 3.0, with ``pytest.mark.parametrize ``
60
+ being the recommended alternative.
61
+
55
62
You can’t perform that action at this time.
0 commit comments