]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33764: Appveyor fixes (GH-7364)
authorZachary Ware <zachary.ware@gmail.com>
Mon, 4 Jun 2018 01:13:31 +0000 (20:13 -0500)
committerNed Deily <nad@python.org>
Mon, 4 Jun 2018 01:13:31 +0000 (21:13 -0400)
* Prevent spurious message if taking a shortcut
* Fix YAML style
* Disable largefile tests

.github/appveyor.yml

index b87beda75e0887ec599386717b2dbc56c67604b7..638540d46bb9cb3cd8e3adcfa6adf368105d74eb 100644 (file)
@@ -20,9 +20,10 @@ before_build:
         If (!$changes) {
           echo 'Only docs were updated, stopping build process.'
           Exit-AppveyorBuild
+        } else {
+          echo 'Doing full build due to non-doc changes in these files:'
+          echo $changes
         }
-        echo 'Doing full build due to non-doc changes in these files:'
-        echo $changes
       }
 
 
@@ -30,8 +31,8 @@ build_script:
   - cmd: PCbuild\build.bat -e
   - cmd: PCbuild\win32\python.exe -m test.pythoninfo
 test_script:
-  - cmd: PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 --fail-env-changed -j0
+  - cmd: PCbuild\rt.bat -q -uall -u-cpu -u-largefile -rwW --slowest --timeout=1200 --fail-env-changed -j0
 environment:
   HOST_PYTHON: C:\Python36\python.exe
 image:
-- Visual Studio 2017
+  - Visual Studio 2017