From e148089471118404fa050ada25a23625fedeb6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Golonka?= Date: Sat, 9 Mar 2019 21:04:54 +0100 Subject: [PATCH 1/3] Fix failing system tests on Appveyor --- appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d3f8855be21..3722529ead4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -120,7 +120,11 @@ build_script: before_test: # Manually grab pyscreeze 0.1.13 as latest release is completely broken. - py -m pip install pyscreeze==0.1.13 - - py -m pip install robotframework robotremoteserver pyautogui nose + # The latest release of pyautogui requires pyscreeze 0.1.20 which unfortunately don't work with Python 2.7. + # See https://github.com/asweigart/pyscreeze/issues/46 + # Therefore install version 0.9.41. + - py -m pip install pyautogui==0.9.41 + - py -m pip install robotframework robotremoteserver nose - mkdir testOutput - mkdir testOutput\unit - mkdir testOutput\system From a842dacd08ff968b1e605b428e0aaca190f8d764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Golonka?= Date: Sat, 9 Mar 2019 21:13:54 +0100 Subject: [PATCH 2/3] Fix capitalization --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3722529ead4..184c97b164e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -120,7 +120,7 @@ build_script: before_test: # Manually grab pyscreeze 0.1.13 as latest release is completely broken. - py -m pip install pyscreeze==0.1.13 - # The latest release of pyautogui requires pyscreeze 0.1.20 which unfortunately don't work with Python 2.7. + # The latest release of PyAutoGUI requires PyScreeze 0.1.20 which unfortunately don't work with Python 2.7. # See https://github.com/asweigart/pyscreeze/issues/46 # Therefore install version 0.9.41. - py -m pip install pyautogui==0.9.41 From 1850b191aa6bd401119e21aae3b45790f8ee614f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Golonka?= Date: Tue, 12 Mar 2019 11:16:06 +0100 Subject: [PATCH 3/3] Review actions --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 184c97b164e..7b01150c41b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -120,7 +120,7 @@ build_script: before_test: # Manually grab pyscreeze 0.1.13 as latest release is completely broken. - py -m pip install pyscreeze==0.1.13 - # The latest release of PyAutoGUI requires PyScreeze 0.1.20 which unfortunately don't work with Python 2.7. + # The latest release of PyAutoGUI requires PyScreeze 0.1.20 which unfortunately doesn't work with Python 2.7. # See https://github.com/asweigart/pyscreeze/issues/46 # Therefore install version 0.9.41. - py -m pip install pyautogui==0.9.41