From ab6ed381ac336baafc26175e68645f7e4e5d88ae Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 15 Jun 2019 20:53:46 -0300 Subject: [PATCH] Improve ExitCode docstring --- src/_pytest/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/_pytest/main.py b/src/_pytest/main.py index 1a92239e2..e9b31bca7 100644 --- a/src/_pytest/main.py +++ b/src/_pytest/main.py @@ -22,8 +22,9 @@ from _pytest.runner import collect_one_node class ExitCode(enum.IntEnum): """ - encodes the valid exit codes of pytest - currently users may still supply other exit codes as well + Encodes the valid exit codes by pytest. + + Currently users and plugins may supply other exit codes as well. """ #: tests passed