summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-08-24 16:24:39 -0700
committerGitHub <noreply@github.com>2020-08-24 16:24:39 -0700
commita936764d1287a61f46853544c6c4c843c9f94b56 (patch)
tree63f538634b3913ac3e9fff2b9b8abc319d692fb9
parentab4a2b181941689fbbc4739733e7ab5ce2d3d854 (diff)
parentd86af4f23fe4bcc40bcbc674a05d5c3eadcf36e7 (diff)
downloadchef-a936764d1287a61f46853544c6c4c843c9f94b56.tar.gz
Merge pull request #10343 from chef/profile_arg
Signed-off-by: Tim Smith <tsmith@chef.io>
-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