Update src/_pytest/outcomes.py

Co-authored-by: Bruno Oliveira <nicoddemus@gmail.com>
This commit is contained in:
Ronny Pfannschmidt 2023-02-28 15:50:42 +01:00 committed by GitHub
parent 2a832f09ff
commit ebad614395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.