Skip to content

Commit

Permalink
skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Jul 28, 2021
1 parent 29014a8 commit 8ccb0e4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ schedules:
displayName: Daily midnight benchmark
branches:
include:
- master
- "master"

jobs:
- job: benchmarks
Expand Down
31 changes: 16 additions & 15 deletions .azure-pipelines/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ trigger:
- '*'
branches:
include:
- master
- release/*
- refs/tags/*
- "master"
- "release/*"
- "refs/tags/*"
pr:
- master
- release/*
- "master"
- "release/*"

jobs:
- job: pytest
# how long to run the job before automatically cancelling
timeoutInMinutes: 45
timeoutInMinutes: "45"
# how much time to give 'run always even if cancelled tasks' before stopping them
cancelTimeoutInMinutes: 2
cancelTimeoutInMinutes: "2"

pool: gridai-spot-pool

Expand Down Expand Up @@ -92,14 +92,15 @@ jobs:
testRunTitle: '$(Agent.OS) - $(Build.DefinitionName) - Python $(python.version)'
condition: succeededOrFailed()

- task: PublishCodeCoverageResults@2
displayName: 'Publish coverage report'
inputs:
codeCoverageTool: 'Cobertura'
summaryFileLocation: 'coverage.xml'
reportDirectory: '$(Build.SourcesDirectory)/htmlcov'
testRunTitle: '$(Agent.OS) - $(Build.BuildNumber)[$(Agent.JobName)] - Python $(python.version)'
condition: succeededOrFailed()
# todo: re-enable after schema check pass, also atm it seems does not have any effect
#- task: PublishCodeCoverageResults@2
# displayName: 'Publish coverage report'
# inputs:
# codeCoverageTool: 'Cobertura'
# summaryFileLocation: 'coverage.xml'
# reportDirectory: '$(Build.SourcesDirectory)/htmlcov'
# testRunTitle: '$(Agent.OS) - $(Build.BuildNumber)[$(Agent.JobName)] - Python $(python.version)'
# condition: succeededOrFailed()

- script: |
set -e
Expand Down

0 comments on commit 8ccb0e4

Please sign in to comment.