summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@chef.io>2020-08-19 21:42:43 -0700
committerGitHub <noreply@github.com>2020-08-19 21:42:43 -0700
commit3d5f650fbd20ff1071fe7371cc16cd353a2f384d (patch)
treee435e1b97260a99fe8d7f8f69d710264582e91f5
parent83da0ed26842b34c028103e2556b7c675ef237e4 (diff)
parent73e37803e59b4bf1e0a005dc0c02efb6896393e0 (diff)
downloadchef-3d5f650fbd20ff1071fe7371cc16cd353a2f384d.tar.gz
Merge pull request #10334 from chef/lcg/omnibus-test-profile
Enable rspec --profile in the omnibus tests
-rw-r--r--omnibus/omnibus-test.ps12
-rw-r--r--omnibus/omnibus-test.sh2
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