Staging
v0.8.1
https://github.com/python/cpython
Revision f5a19ead4ba8c81cc27d5a530f830f4709ce240e authored by Soumendra Ganguly on 27 November 2020, 10:16:41 UTC, committed by GitHub on 27 November 2020, 10:16:41 UTC
1 parent c8aaf71
Raw File
Tip revision: f5a19ead4ba8c81cc27d5a530f830f4709ce240e authored by Soumendra Ganguly on 27 November 2020, 10:16:41 UTC
bpo-41818: Make test_openpty() avoid unexpected success due to number of rows and/or number of columns being == 0. (GH-23526)
Tip revision: f5a19ea
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