diff --git a/test/powershell/Set-PSDebug.Tests.ps1 b/test/powershell/Set-PSDebug.Tests.ps1 index ec439db4f..34bef0f9b 100644 --- a/test/powershell/Set-PSDebug.Tests.ps1 +++ b/test/powershell/Set-PSDebug.Tests.ps1 @@ -4,13 +4,13 @@ Describe "Set-PSDebug" { Set-PSDebug -Off } - It "Should be able to go through the tracing options" { + It "Should be able to go through the tracing options" -Skip:($env:APPVEYOR -eq "TRUE") { { Set-PSDebug -Trace 0 } | Should Not Throw { Set-PSDebug -Trace 1 } | Should Not Throw { Set-PSDebug -Trace 2 } | Should Not Throw } - It "Should be able to set strict" { + It "Should be able to set strict" -Skip:($env:APPVEYOR -eq "TRUE") { { Set-PSDebug -Strict } | Should Not Throw } }