Is it possible to disable a module level mark for a specific test? #10239
-
|
I'm using module level marks ( For example: Note that this specific mark is handled by the pytest-recording plugin, so I can't ignore the mark for |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
This is not supported and its not a desirable feature in general as it painfully complicates details |
Beta Was this translation helpful? Give feedback.
-
|
A quick fix is to move the tests that need the mark to a class, then apply a class-level mark instead. |
Beta Was this translation helpful? Give feedback.
A quick fix is to move the tests that need the mark to a class, then apply a class-level mark instead.