diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2020-08-19 21:41:36 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2020-08-19 21:41:36 -0700 |
commit | 73e37803e59b4bf1e0a005dc0c02efb6896393e0 (patch) | |
tree | 04e557105e41dd602d5295bea46b2f2905ae119f /omnibus | |
parent | 6eeb56b2889bc152c78a22d2b133183728023f1d (diff) | |
download | chef-73e37803e59b4bf1e0a005dc0c02efb6896393e0.tar.gz |
Enable rspec --profile in the omnibus tests
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'omnibus')
-rw-r--r-- | omnibus/omnibus-test.ps1 | 2 | ||||
-rw-r--r-- | omnibus/omnibus-test.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/omnibus/omnibus-test.ps1 b/omnibus/omnibus-test.ps1 index 999f590495..5240d8e6e3 100644 --- a/omnibus/omnibus-test.ps1 +++ b/omnibus/omnibus-test.ps1 @@ -94,5 +94,5 @@ winrm quickconfig -quiet bundle If ($lastexitcode -ne 0) { Exit $lastexitcode } -bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --tag ~choco_installed +bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress --profile --tag ~choco_installed If ($lastexitcode -ne 0) { Exit $lastexitcode } diff --git a/omnibus/omnibus-test.sh b/omnibus/omnibus-test.sh index 30a41467dc..c0ec0e1575 100644 --- a/omnibus/omnibus-test.sh +++ b/omnibus/omnibus-test.sh @@ -151,4 +151,4 @@ export CHEF_LICENSE=accept-no-persist cd "$chef_gem" sudo -E bundle install --jobs=3 --retry=3 -sudo -E bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f progress +sudo -E bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml --profile -f progress |