We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04211c0 commit a2c639eCopy full SHA for a2c639e
doc/test-tools-integration.adoc
@@ -32,7 +32,9 @@ $config.CodeCoverage.OutputFormat = 'JaCoCo'
32
33
Invoke-Pester -Configuration $config
34
. ("$PSScriptRoot\config.ps1")
35
-Remove-Item -Path $Global:jacocoxml2htmlConfig.destination_directory -Recurse -Force
+if (Test-Path -Path $Global:jacocoxml2htmlConfig.destination_directory) {
36
+ Remove-Item -Path $Global:jacocoxml2htmlConfig.destination_directory -Recurse -Force
37
+}
38
& .\constup-jacoco-xml-to-html -config .\config.ps1
39
----
40
0 commit comments