summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--habitat/tests/spec.ps12
-rwxr-xr-xhabitat/tests/test.sh2
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'