Title: [273980] trunk/Tools
Revision
273980
Author
aakash_j...@apple.com
Date
2021-03-05 10:15:06 -0800 (Fri, 05 Mar 2021)

Log Message

[ews] Run ews unit-tests with Python 3
https://bugs.webkit.org/show_bug.cgi?id=222800

Reviewed by Jonathan Bedard.

* CISupport/ews-build/steps.py:
(RunEWSUnitTests):
* CISupport/ews-build/steps_unittest.py: Updated unit-tests.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/steps.py (273979 => 273980)


--- trunk/Tools/CISupport/ews-build/steps.py	2021-03-05 18:07:38 UTC (rev 273979)
+++ trunk/Tools/CISupport/ews-build/steps.py	2021-03-05 18:15:06 UTC (rev 273980)
@@ -1241,7 +1241,7 @@
 class RunEWSUnitTests(shell.ShellCommand):
     name = 'ews-unit-tests'
     description = ['ews-unit-tests running']
-    command = ['python', 'runUnittests.py', 'ews-build']
+    command = ['python3', 'runUnittests.py', 'ews-build']
 
     def __init__(self, **kwargs):
         super(RunEWSUnitTests, self).__init__(workdir='build/Tools/CISupport', timeout=2 * 60, logEnviron=False, **kwargs)

Modified: trunk/Tools/CISupport/ews-build/steps_unittest.py (273979 => 273980)


--- trunk/Tools/CISupport/ews-build/steps_unittest.py	2021-03-05 18:07:38 UTC (rev 273979)
+++ trunk/Tools/CISupport/ews-build/steps_unittest.py	2021-03-05 18:15:06 UTC (rev 273980)
@@ -672,7 +672,7 @@
             ExpectShell(workdir='build/Tools/CISupport',
                         timeout=120,
                         logEnviron=False,
-                        command=['python', 'runUnittests.py', 'ews-build'],
+                        command=['python3', 'runUnittests.py', 'ews-build'],
                         )
             + 0,
         )
@@ -685,7 +685,7 @@
             ExpectShell(workdir='build/Tools/CISupport',
                         timeout=120,
                         logEnviron=False,
-                        command=['python', 'runUnittests.py', 'ews-build'],
+                        command=['python3', 'runUnittests.py', 'ews-build'],
                         )
             + ExpectShell.log('stdio', stdout='Unhandled Error. Traceback (most recent call last): Keys in cmd missing from expectation: [logfiles.json]')
             + 2,

Modified: trunk/Tools/ChangeLog (273979 => 273980)


--- trunk/Tools/ChangeLog	2021-03-05 18:07:38 UTC (rev 273979)
+++ trunk/Tools/ChangeLog	2021-03-05 18:15:06 UTC (rev 273980)
@@ -1,3 +1,14 @@
+2021-03-05  Aakash Jain  <aakash_j...@apple.com>
+
+        [ews] Run ews unit-tests with Python 3
+        https://bugs.webkit.org/show_bug.cgi?id=222800
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/ews-build/steps.py:
+        (RunEWSUnitTests):
+        * CISupport/ews-build/steps_unittest.py: Updated unit-tests.
+
 2021-03-05  Razvan Caliman  <rcali...@apple.com>
 
         Mark myself as committer in contributors.json.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to