Skip to content

Commit 8ccb0e4

Browse files
committed
skip
1 parent 29014a8 commit 8ccb0e4

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

.azure-pipelines/gpu_benchmark.yml renamed to .azure-pipelines/gpu-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ schedules:
33
displayName: Daily midnight benchmark
44
branches:
55
include:
6-
- master
6+
- "master"
77

88
jobs:
99
- job: benchmarks

.azure-pipelines/gpu-tests.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ trigger:
99
- '*'
1010
branches:
1111
include:
12-
- master
13-
- release/*
14-
- refs/tags/*
12+
- "master"
13+
- "release/*"
14+
- "refs/tags/*"
1515
pr:
16-
- master
17-
- release/*
16+
- "master"
17+
- "release/*"
1818

1919
jobs:
2020
- job: pytest
2121
# how long to run the job before automatically cancelling
22-
timeoutInMinutes: 45
22+
timeoutInMinutes: "45"
2323
# how much time to give 'run always even if cancelled tasks' before stopping them
24-
cancelTimeoutInMinutes: 2
24+
cancelTimeoutInMinutes: "2"
2525

2626
pool: gridai-spot-pool
2727

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

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

104105
- script: |
105106
set -e

0 commit comments

Comments
 (0)