From 87994b40b3874e45666edfceb313e19611cd460e Mon Sep 17 00:00:00 2001 From: Moritz Sichert Date: Thu, 3 Mar 2016 21:09:35 +0100 Subject: [PATCH] Refs #25653 -- Corrected help text for runtests.py --selenium option. --- tests/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.py b/tests/runtests.py index b14bc76ed7..2fa73e7438 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -397,7 +397,7 @@ if __name__ == "__main__": 'is localhost:8081-8179.') parser.add_argument( '--selenium', action='store_true', dest='selenium', default=False, - help='Run the Selenium tests as well (if Selenium is installed).') + help='Run only the Selenium tests (equivalent to "--tag selenium").') parser.add_argument( '--debug-sql', action='store_true', dest='debug_sql', default=False, help='Turn on the SQL query logger within tests.')