Staging
v0.5.1
https://github.com/python/cpython
Revision 61f23cb62d6bdd72b61fc36abf4c1492493d71af authored by Miss Islington (bot) on 09 August 2020, 20:26:37 UTC, committed by GitHub on 09 August 2020, 20:26:37 UTC

A message box pops up when an unexpected error stops the run process.  Tell users it is likely a random glitch, but report it if not.
(cherry picked from commit f2e161c27964a59bc5ab20d96f87ba5862c6222d)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent f421865
Raw File
Tip revision: 61f23cb62d6bdd72b61fc36abf4c1492493d71af authored by Miss Islington (bot) on 09 August 2020, 20:26:37 UTC
bpo-41468: Improve and test IDLE run error exit (GH-21798)
Tip revision: 61f23cb
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 -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