diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-10-22 15:48:50 -0700 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-10-29 13:27:21 -0700 |
commit | 7630ec6786d270690374fbaac6afe6d0f6f0ad2b (patch) | |
tree | 7f90e6957b65e861d7216d8b8f85c24ce17f61f4 /omnibus | |
parent | 3559aa878da54fe230c3771bee98e4726bcde843 (diff) | |
download | chef-7630ec6786d270690374fbaac6afe6d0f6f0ad2b.tar.gz |
Remove rspec_junit_formatter gem.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'omnibus')
-rw-r--r-- | omnibus/omnibus-test.ps1 | 6 | ||||
-rw-r--r-- | omnibus/omnibus-test.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/omnibus/omnibus-test.ps1 b/omnibus/omnibus-test.ps1 index b30409596a..aa23a6442a 100644 --- a/omnibus/omnibus-test.ps1 +++ b/omnibus/omnibus-test.ps1 @@ -114,13 +114,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 -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 -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 -f progress --profile -- ./spec/integration If ($lastexitcode -ne 0) { $exit = 1 } Exit $exit diff --git a/omnibus/omnibus-test.sh b/omnibus/omnibus-test.sh index c0ec0e1575..2c1313681c 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 --profile -f progress +sudo -E bundle exec rspec --profile -f progress |