Skip to content

Commit 4802104

Browse files
committed
enable coverage
1 parent 985d58f commit 4802104

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Directory.Packages.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
<PackageVersion Include="xunit.assemblyfixture" Version="2.2.0" />
5959
<PackageVersion Include="xunit.assert" Version="2.5.0" />
6060
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.0"/>
61-
<!--<PackageVersion Include="envdte" Version="17.7.37355" />-->
6261

6362
</ItemGroup>
6463
</Project>

eng/azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ trigger:
55
exclude: [".github", "Documentation", "*.md"]
66

77
variables:
8-
system.debug: 'true'
9-
EnableCoverage: 'false'
8+
system.debug: 'false'
9+
EnableCoverage: 'enable'
1010

1111
jobs:
1212
- job: Windows

eng/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ steps:
2424
command: test
2525
arguments: -c $(BuildConfiguration) --no-build
2626
testRunTitle: $(Agent.JobName)
27-
condition: and(succeeded(), eq(variables['enableCoverage'], 'false'))
27+
condition: and(succeeded(), ne(variables['enableCoverage'], 'true'))
2828

2929
- task: DotNetCoreCLI@2
3030
displayName: Run tests with coverage

0 commit comments

Comments
 (0)