diff options
author | mwrock <matt@mattwrock.com> | 2020-08-24 16:12:43 -0700 |
---|---|---|
committer | mwrock <matt@mattwrock.com> | 2020-08-24 16:12:43 -0700 |
commit | d86af4f23fe4bcc40bcbc674a05d5c3eadcf36e7 (patch) | |
tree | b1287b6962415cdb7e8d547c3508c535ab31f429 /omnibus | |
parent | 58f414171e8809121aa9fd65936b81a6423e5c99 (diff) | |
download | chef-d86af4f23fe4bcc40bcbc674a05d5c3eadcf36e7.tar.gz |
separate omnibus rspec path from options
Signed-off-by: mwrock <matt@mattwrock.com>
Diffstat (limited to 'omnibus')
-rw-r--r-- | omnibus/omnibus-test.ps1 | 6 |
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 |