From d1c2a2c896be382f7b5db5d9087f7098400684e7 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Thu, 12 May 2016 14:22:04 -0700 Subject: [PATCH] Disable Set-PSDebug tests on AppVeyor These pass locally, just not with AppVeyor's host. --- test/powershell/Set-PSDebug.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } }