summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeha Pansare <neha.pansare@progress.com>2022-11-07 18:10:34 +0530
committerNeha Pansare <neha.pansare@progress.com>2022-11-11 13:36:09 +0530
commit0f44772f0659aa6e5fd1433132edc6a24c5a2c80 (patch)
tree233fed8d51332ce2f381338806898e6cd39da6dd
parentcd24f4503a0be4087f49742b685fc803ff1444ce (diff)
downloadchef-0f44772f0659aa6e5fd1433132edc6a24c5a2c80.tar.gz
Run windows functional tests under verify pipeline using rspec directly instaed of rake task as it throws 'Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.'
Signed-off-by: Neha Pansare <neha.pansare@progress.com>
-rw-r--r--.expeditor/scripts/bk_win_functional.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/.expeditor/scripts/bk_win_functional.ps1 b/.expeditor/scripts/bk_win_functional.ps1
index d1030b1afa..688b5af83f 100644
--- a/.expeditor/scripts/bk_win_functional.ps1
+++ b/.expeditor/scripts/bk_win_functional.ps1
@@ -30,5 +30,5 @@ bundle install --jobs=3 --retry=3
if (-not $?) { throw "Unable to install gem dependencies" }
Write-Output "+++ bundle exec rake spec:functional"
-bundle exec rake spec:functional
+bundle exec rspec spec/functional
if (-not $?) { throw "Chef functional specs failing." }