summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormwrock <matt@mattwrock.com>2020-08-24 16:12:43 -0700
committermwrock <matt@mattwrock.com>2020-08-24 16:12:43 -0700
commitd86af4f23fe4bcc40bcbc674a05d5c3eadcf36e7 (patch)
treeb1287b6962415cdb7e8d547c3508c535ab31f429
parent58f414171e8809121aa9fd65936b81a6423e5c99 (diff)
downloadchef-d86af4f23fe4bcc40bcbc674a05d5c3eadcf36e7.tar.gz
separate omnibus rspec path from options
Signed-off-by: mwrock <matt@mattwrock.com>
-rw-r--r--omnibus/omnibus-test.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/omnibus/omnibus-test.ps1 b/omnibus/omnibus-test.ps1
index f05feaaa68..8ca48beb69 100644
--- a/omnibus/omnibus-test.ps1
+++ b/omnibus/omnibus-test.ps1
@@ -107,13 +107,13 @@ $env:Path = $p
# desktop heap exhaustion seems likely (https://docs.microsoft.com/en-us/archive/blogs/ntdebugging/desktop-heap-overview)
$exit = 0
-bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile ./spec/unit
+bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile -- ./spec/unit
If ($lastexitcode -ne 0) { $exit = 1 }
-bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile ./spec/functional
+bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile -- ./spec/functional
If ($lastexitcode -ne 0) { $exit = 1 }
-bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile ./spec/integration
+bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile -- ./spec/integration
If ($lastexitcode -ne 0) { $exit = 1 }
Exit $exit