From 69db6adf9dc4e68713578683f5d81d8803346a9c Mon Sep 17 00:00:00 2001 From: Jason Dellaluce Date: Fri, 22 Apr 2022 10:39:54 +0000 Subject: [PATCH] refactor(test): use SKIP_PLUGINS_TESTS to skip k8s audit regression tests Signed-off-by: Jason Dellaluce --- test/run_regression_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/run_regression_tests.sh b/test/run_regression_tests.sh index 9a7d23ef..5cb139e5 100755 --- a/test/run_regression_tests.sh +++ b/test/run_regression_tests.sh @@ -100,13 +100,14 @@ function run_tests() { # as we're watching the return status when running avocado. set +e TEST_RC=0 - suites=($SCRIPTDIR/falco_traces.yaml $SCRIPTDIR/falco_tests.yaml $SCRIPTDIR/falco_k8s_audit_tests.yaml $SCRIPTDIR/falco_tests_exceptions.yaml) + suites=($SCRIPTDIR/falco_traces.yaml $SCRIPTDIR/falco_tests.yaml $SCRIPTDIR/falco_tests_exceptions.yaml) if [ "$SKIP_PACKAGES_TESTS" = false ] ; then suites+=($SCRIPTDIR/falco_tests_package.yaml) fi if [ "$SKIP_PLUGINS_TESTS" = false ] ; then + suites+=($SCRIPTDIR/falco_k8s_audit_tests.yaml) suites+=($SCRIPTDIR/falco_tests_plugins.yaml) fi