From fc0bf7c7a6e321b98f29f291ecfa12a7eb86bf63 Mon Sep 17 00:00:00 2001 From: "Ilya.Kazakevich" Date: Fri, 6 May 2016 17:21:40 +0300 Subject: [PATCH] Comment added to prevent questions like PY-19441 --- python/helpers/pycharm/pytestrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/helpers/pycharm/pytestrunner.py b/python/helpers/pycharm/pytestrunner.py index 6b2bdd61f552..e6c45ad7e171 100644 --- a/python/helpers/pycharm/pytestrunner.py +++ b/python/helpers/pycharm/pytestrunner.py @@ -20,7 +20,7 @@ def get_plugin_manager(): from _pytest.core import PluginManager return PluginManager(load=True) -# "-s" is always required: no test output provided otherwise +# "-s" is always required: no test output provided otherwise (see PY-12621) args = sys.argv[1:] args.append("-s") if "-s" not in args else None