From ebad6143957f06563333f1d7c49ba821cc5a599a Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 28 Feb 2023 15:50:42 +0100 Subject: [PATCH] Update src/_pytest/outcomes.py Co-authored-by: Bruno Oliveira --- src/_pytest/outcomes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/outcomes.py b/src/_pytest/outcomes.py index 47d1719be..95552616e 100644 --- a/src/_pytest/outcomes.py +++ b/src/_pytest/outcomes.py @@ -159,7 +159,7 @@ def skip( :param allow_module_level: Allows this function to be called at module level. Raising the skip exception at module level will stop - the execution of the module and prevent its collection. alltogether. + the execution of the module and prevent the collection of all tests in the module, even those defined before the `skip` call. Defaults to False.