summaryrefslogtreecommitdiff
path: root/omnibus/omnibus-test.ps1
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-12-15 21:00:38 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2019-12-15 21:00:38 -0800
commit89f7f67acbc7f4db202a782178a5e5400a9d02ce (patch)
treeeddf98a5f4bd11f99ebc100030152443ab8e86d3 /omnibus/omnibus-test.ps1
parent0dd576db8a9f0b24718113b88f475f09afff7073 (diff)
downloadchef-89f7f67acbc7f4db202a782178a5e5400a9d02ce.tar.gz
revert back to only functional testing
i'm not going to have time to figure out why the unit + integ tests are still busted before vacation. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'omnibus/omnibus-test.ps1')
-rw-r--r--omnibus/omnibus-test.ps16
1 files changed, 2 insertions, 4 deletions
diff --git a/omnibus/omnibus-test.ps1 b/omnibus/omnibus-test.ps1
index 875813e56b..5585a97638 100644
--- a/omnibus/omnibus-test.ps1
+++ b/omnibus/omnibus-test.ps1
@@ -91,10 +91,8 @@ winrm quickconfig -quiet
bundle
If ($lastexitcode -ne 0) { Exit $lastexitcode }
-# NOTE: we have unit tests in chef/chef which ARE NOT unit tests. We need to run them on the actual shipping production artifact on the
-# actual distro that they're expected to run on, or we lose test coverage, which leads to shipping regressions. We need to run all the
-# tests here before shipping. The integration specs have been removed due to bugginess with license acceptance, but that should be fixed.
+# FIXME: we need to add back unit and integration tests here. we have no converage of those on e.g. AIX
#
# chocolatey functional tests fail so disable that tag directly <-- and this is a bug that needs fixing.
-bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation --tag ~choco_installed spec/functional spec/unit
+bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation --tag ~choco_installed spec/functional
If ($lastexitcode -ne 0) { Exit $lastexitcode }