From: Ned Deily Date: Mon, 4 Jun 2018 04:52:38 +0000 (-0400) Subject: bpo-33764: Appveyor fixes (GH-7364) (GH-7380) X-Git-Tag: v2.7.16rc1~275 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cbdbf35db16f2b06c0974b711c4d8b840c8a264;p=thirdparty%2FPython%2Fcpython.git bpo-33764: Appveyor fixes (GH-7364) (GH-7380) * Prevent spurious message if taking a shortcut * Fix YAML style * Disable largefile tests --- diff --git a/.github/appveyor.yml b/.github/appveyor.yml index c69e0ad2c4f2..3830666e8704 100644 --- a/.github/appveyor.yml +++ b/.github/appveyor.yml @@ -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,6 +31,6 @@ build_script: - cmd: PCbuild\build.bat -e - cmd: PCbuild\python.exe -m test.pythoninfo test_script: - - cmd: PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest -j2 + - cmd: PCbuild\rt.bat -q -uall -u-cpu -u-largefile -rwW --slowest -j2 environment: HOST_PYTHON: C:\Python36\python.exe