Skip to content

Commit

Permalink
Fix failing system tests on Appveyor (#9358)
Browse files Browse the repository at this point in the history
* Fix failing system tests on Appveyor

* Fix capitalization

* Review actions
  • Loading branch information
lukaszgo1 authored and michaelDCurran committed Mar 18, 2019
1 parent fefedd4 commit 29e901b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion appveyor.yml
Expand Up @@ -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 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
- py -m pip install robotframework robotremoteserver nose
- mkdir testOutput
- mkdir testOutput\unit
- mkdir testOutput\system
Expand Down

0 comments on commit 29e901b

Please sign in to comment.