Skip to content

Commit b8c0dac

Browse files
committed
explicit test reporter
1 parent 3cc40cf commit b8c0dac

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

azure-pipelines.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,19 @@ jobs:
88
steps:
99
- script: ./build.sh test-one skipdocs
1010
displayName: build and unit test
11+
- task: PublishTestResults@2
12+
inputs:
13+
testRunner: VSTest
14+
testResultsFiles: '**/*.trx'
15+
1116
- job: Windows
1217
pool:
1318
vmImage: 'vs2017-win2016'
1419
steps:
15-
- script: build.bat canary
20+
- script: build.bat canary skipdocs
1621
displayName: build and unit test
22+
- task: PublishTestResults@2
23+
inputs:
24+
testRunner: VSTest
25+
testResultsFiles: '**/*.trx'
26+

src/Elasticsearch.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Root", "Root", "{EAE89579-C
5252
ProjectSection(SolutionItems) = preProject
5353
..\.editorconfig = ..\.editorconfig
5454
..\.gitignore = ..\.gitignore
55-
..\.travis.yml = ..\.travis.yml
5655
..\appveyor.yml = ..\appveyor.yml
5756
..\global.json = ..\global.json
57+
..\azure-pipelines.yml = ..\azure-pipelines.yml
5858
EndProjectSection
5959
EndProject
6060
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Nuget", "Nuget", "{C7865979-1D1C-46AF-BDE8-1DA6F3ED81B3}"

0 commit comments

Comments
 (0)