diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-10-29 13:20:10 -0700 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-10-29 13:20:10 -0700 |
commit | 0aa3045558d952d20da38622cbd943ab7e509182 (patch) | |
tree | cc63034cfc13fce68fc02cac5e015ec757219a67 | |
parent | b4d9dce4ecb31aa935cbe20053b2d335d62032bf (diff) | |
download | chef-0aa3045558d952d20da38622cbd943ab7e509182.tar.gz |
Don't run rspec with documentation formatter.limit-rspec-output
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r-- | habitat/tests/spec.ps1 | 2 | ||||
-rwxr-xr-x | habitat/tests/test.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/habitat/tests/spec.ps1 b/habitat/tests/spec.ps1 index 6cbdd406c2..34b3a07beb 100644 --- a/habitat/tests/spec.ps1 +++ b/habitat/tests/spec.ps1 @@ -18,7 +18,7 @@ try { SETX GEM_PATH $($gemPath.Split("=")[1]) /m hab pkg binlink --force $PackageIdentifier - /hab/bin/rspec --format documentation --tag ~executables --tag ~choco_installed spec/functional + /hab/bin/rspec --tag ~executables --tag ~choco_installed spec/functional if (-not $?) { throw "functional testing failed"} } finally { Pop-Location diff --git a/habitat/tests/test.sh b/habitat/tests/test.sh index 2fcd7dafd5..c28ab8b2cf 100755 --- a/habitat/tests/test.sh +++ b/habitat/tests/test.sh @@ -34,4 +34,4 @@ for executable in 'chef-client' 'ohai' 'chef-shell' 'chef-apply' 'knife' 'chef-s done echo "--- :mag_right: Testing ${pkg_ident} functionality" -hab pkg exec "${pkg_ident}" rspec -f documentation --tag ~executables spec/functional || error 'failures during rspec tests' +hab pkg exec "${pkg_ident}" rspec --tag ~executables spec/functional || error 'failures during rspec tests' |