Skip to content

Commit

Permalink
Fix azure-pipelines.yml (bazelbuild#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszstrejczek authored Dec 9, 2018
1 parent a496aa1 commit 5eb158b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
$xslt.Transform($file, $result)
}
}
gci -r . -filter "test*.xml" -exclude "*-junit.xml" | foreach { doProcess($_.FullName) }
gci -r bazel-out -filter "test*.xml" -exclude "*-junit.xml" | foreach { doProcess($_.FullName) }
- task: PublishTestResults@2
inputs:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
$xslt.Transform($file, $result)
}
}
gci -r . -filter "test*.xml" -exclude "*-junit.xml" | foreach { doProcess($_.FullName) }
gci -r bazel-out -filter "test*.xml" -exclude "*-junit.xml" | foreach { doProcess($_.FullName) }
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit' # Options: JUnit, NUnit, VSTest, xUnit
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
$xslt.Transform($file, $result)
}
}
gci -r . -filter "test*.xml" -exclude "*-junit.xml" | foreach { doProcess($_.FullName) }
gci -r bazel-out -filter "test*.xml" -exclude "*-junit.xml" | foreach { doProcess($_.FullName) }
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit' # Options: JUnit, NUnit, VSTest, xUnit
Expand Down

0 comments on commit 5eb158b

Please sign in to comment.