From bdc7d0c2db6b72164da6fcce8f946fa4fb485bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Wed, 17 Jan 2024 13:01:22 +0100 Subject: [PATCH] temporary: Disable deprecate-integration-cli validation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- hack/validate/default | 2 +- hack/validate/deprecate-integration-cli | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100755 hack/validate/deprecate-integration-cli diff --git a/hack/validate/default b/hack/validate/default index 9606df2db1..a36af22520 100755 --- a/hack/validate/default +++ b/hack/validate/default @@ -12,6 +12,6 @@ SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" . "${SCRIPTDIR}"/swagger . "${SCRIPTDIR}"/swagger-gen . "${SCRIPTDIR}"/toml -. "${SCRIPTDIR}"/deprecate-integration-cli +#. "${SCRIPTDIR}"/deprecate-integration-cli . "${SCRIPTDIR}"/golangci-lint . "${SCRIPTDIR}"/shfmt diff --git a/hack/validate/deprecate-integration-cli b/hack/validate/deprecate-integration-cli deleted file mode 100755 index f7b273c9f7..0000000000 --- a/hack/validate/deprecate-integration-cli +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bash -# Check that no new tests are being added to integration-cli - -SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -source "${SCRIPTDIR}/.validate" - -new_tests=$( - validate_diff --diff-filter=ACMR --unified=0 -- 'integration-cli/*_api_*.go' 'integration-cli/*_cli_*.go' \ - | grep -E '^\+func (.*) Test' || true -) - -if [ -n "$new_tests" ]; then - { - echo "The following new tests were added to integration-cli:" - echo - echo "$new_tests" - echo - echo "integration-cli is deprecated. Please add an API integration test to" - echo "./integration/COMPONENT/. See ./TESTING.md for more details." - echo - } >&2 - false -else - echo 'Congratulations! No new tests were added to integration-cli.' -fi