Title: [227198] trunk/Tools
Revision
227198
Author
[email protected]
Date
2018-01-19 07:19:32 -0800 (Fri, 19 Jan 2018)

Log Message

WebDriver: driver environment not passed to pytest when running w3c tests
https://bugs.webkit.org/show_bug.cgi?id=181852

Patch by Carlos Garcia Campos <[email protected]> on 2018-01-19
Reviewed by Carlos Alberto Lopez Perez.

That's why color codes are not used in the bots log for selenium tests but they appear in w3c tests.

* Scripts/webkitpy/webdriver_tests/webdriver_w3c_executor.py:
(WebDriverW3CExecutor.run):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (227197 => 227198)


--- trunk/Tools/ChangeLog	2018-01-19 14:19:59 UTC (rev 227197)
+++ trunk/Tools/ChangeLog	2018-01-19 15:19:32 UTC (rev 227198)
@@ -1,5 +1,17 @@
 2018-01-19  Carlos Garcia Campos  <[email protected]>
 
+        WebDriver: driver environment not passed to pytest when running w3c tests
+        https://bugs.webkit.org/show_bug.cgi?id=181852
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        That's why color codes are not used in the bots log for selenium tests but they appear in w3c tests.
+
+        * Scripts/webkitpy/webdriver_tests/webdriver_w3c_executor.py:
+        (WebDriverW3CExecutor.run):
+
+2018-01-19  Carlos Garcia Campos  <[email protected]>
+
         [GTK] WebDriver: wayland display no used in wayland bot
         https://bugs.webkit.org/show_bug.cgi?id=181851
 

Modified: trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_w3c_executor.py (227197 => 227198)


--- trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_w3c_executor.py	2018-01-19 14:19:59 UTC (rev 227197)
+++ trunk/Tools/Scripts/webkitpy/webdriver_tests/webdriver_w3c_executor.py	2018-01-19 15:19:32 UTC (rev 227198)
@@ -150,5 +150,6 @@
                'WD_PORT': str(self.protocol.session_config['port']),
                'WD_CAPABILITIES': json.dumps(self.protocol.session_config['capabilities']),
                'WD_SERVER_CONFIG': json.dumps(self.server_config)}
+        env.update(WebKitDriverServer.test_env)
         args = ['--strict', '-p', 'no:mozlog']
         return pytest_runner.run(test, args, timeout, env, expectations)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to