diff options
author | Jack Moffitt <jack@metajack.im> | 2016-11-02 21:11:43 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2016-11-16 10:38:15 -0700 |
commit | 8e8519d03826042b453e54527aaf3e3646221fec (patch) | |
tree | 3413460d9915e289267e9e9b5552ce52a95f7cf0 /appveyor.yml | |
parent | 524ed827007dee1563aed25f3bc3d0edff77ea78 (diff) | |
download | servo-8e8519d03826042b453e54527aaf3e3646221fec.tar.gz servo-8e8519d03826042b453e54527aaf3e3646221fec.zip |
Fix test-wpt and test-css for Windows.
In addition to minor changes for Windows, this forces Windows Python to
be used for all Windows builds (instead of using Windows Python only for
pc-windows-msvc builds).
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index a313b572d5b..642954ff02b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -68,6 +68,6 @@ install: build_script: - if %BUILD_ENV%==msvc mach build -d -v && mach test-unit - - if %BUILD_ENV%==gnu bash -lc "cd $APPVEYOR_BUILD_FOLDER; ./mach build -d -v && ./mach test-unit" + - if %BUILD_ENV%==gnu bash -lc "export PATH=/c/Python27:$PATH; cd $APPVEYOR_BUILD_FOLDER; ./mach build -d -v && ./mach test-unit" test: off |