Staging
v0.5.1
https://github.com/python/cpython
Revision 7abbddd88d4debe75b201145b6212afb7d93c457 authored by Miss Islington (bot) on 10 November 2017, 23:14:00 UTC, committed by Berker Peksag on 10 November 2017, 23:14:00 UTC
(cherry picked from commit e184cfd7bf8bcfd160e3b611d4351ca3ce52d9e2)
1 parent 7997fa2
Raw File
Tip revision: 7abbddd88d4debe75b201145b6212afb7d93c457 authored by Miss Islington (bot) on 10 November 2017, 23:14:00 UTC
bpo-31824: Document default value of 'errors' parameters (GH-4328)
Tip revision: 7abbddd
appveyor.yml
version: 3.6.1+.{build}
clone_depth: 5
branches:
  only:
    - master
    - /\d\.\d/
    - buildbot-custom
cache:
  - externals -> PCbuild\*
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 -j0
environment:
  HOST_PYTHON: C:\Python36\python.exe
image:
- Visual Studio 2015
- Visual Studio 2017

# Only trigger AppVeyor if actual code or its configuration changes
only_commits:
  files:
    - .github/appveyor.yml
    - .gitattributes
    - Grammar/
    - Include/
    - Lib/
    - Modules/
    - Objects/
    - PC/
    - PCBuild/
    - Parser/
    - Programs/
    - Python/
    - Tools/
back to top