Staging
v0.5.1
https://github.com/python/cpython
Revision 4b75466f5a539021217cff18bc248c1593cee262 authored by Pablo Galindo on 14 December 2019, 10:55:00 UTC, committed by GitHub on 14 December 2019, 10:55:00 UTC
(cherry picked from commit 5936a4ce914d42af97b9238e5090dedc8d5b0bd2)

Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
1 parent 26892c7
Raw File
Tip revision: 4b75466f5a539021217cff18bc248c1593cee262 authored by Pablo Galindo on 14 December 2019, 10:55:00 UTC
[3.7] Fix elif start column offset when there is an else following (GH-17596) (GH-17601)
Tip revision: 4b75466
macos-steps.yml
steps:
- checkout: self
  clean: true
  fetchDepth: 5

- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
  displayName: 'Configure CPython (debug)'

- script: make -s -j4
  displayName: 'Build CPython'

- script: make pythoninfo
  displayName: 'Display build info'

- script: make buildbottest TESTOPTS="-j4 -uall,-cpu --junit-xml=$(build.binariesDirectory)/test-results.xml"
  displayName: 'Tests'
  continueOnError: true
  timeoutInMinutes: 30

- task: PublishTestResults@2
  displayName: 'Publish Test Results'
  inputs:
    testResultsFiles: '$(build.binariesDirectory)/test-results.xml'
    mergeTestResults: true
    testRunTitle: $(testRunTitle)
    platform: $(testRunPlatform)
  condition: succeededOrFailed()
back to top