summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-03 18:16:59 -0700
committerNed Deily <nad@python.org>2018-06-03 21:16:59 -0400
commit37343a2db8763a114e63ac63a249603b1df2554d (patch)
treeb2378e1646f4dbb2bd2a9960b3722b402c317807 /.github
parent2332fedb8d7037172946520bb1a552c7018261d5 (diff)
downloadcpython-git-37343a2db8763a114e63ac63a249603b1df2554d.tar.gz
bpo-33764: Appveyor fixes (GH-7364) (GH-7369)
* Prevent spurious message if taking a shortcut * Fix YAML style * Disable largefile tests (cherry picked from commit 47a6c79f0986ce9a84d0efc3c565b28255042911) Co-authored-by: Zachary Ware <zachary.ware@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/appveyor.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/appveyor.yml b/.github/appveyor.yml
index 9d47c9975e..6662732326 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,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