From e60076606212b7bc4a924312edfc977062573a80 Mon Sep 17 00:00:00 2001 From: vatsrahul1001 Date: Wed, 21 Aug 2024 14:15:05 +0530 Subject: [PATCH] testing --- .circleci/integration-tests/script.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/integration-tests/script.sh b/.circleci/integration-tests/script.sh index 4f969794e..4ea8bd08b 100755 --- a/.circleci/integration-tests/script.sh +++ b/.circleci/integration-tests/script.sh @@ -35,7 +35,7 @@ function clean() { [[ -f ${SCRIPT_PATH}/setup.cfg ]] && rm "${SCRIPT_PATH}"/setup.cfg [[ -f ${SCRIPT_PATH}/packages.txt ]] && rm "${SCRIPT_PATH}"/packages.txt [[ -f ${SCRIPT_PATH}/requirements.txt ]] && rm "${SCRIPT_PATH}"/requirements.txt - find . -name "example_*" ! -name "example_databricks_workflow" -exec rm {} \; + # find . -name "example_*" ! -name "example_databricks_workflow" -exec rm {} \; } if [ "$1" == "-h" ]; then @@ -60,7 +60,7 @@ else exit 1 fi -clean +#clean # Copy source files mkdir "${SCRIPT_PATH}"/astronomer-providers @@ -68,7 +68,7 @@ cp -r "${PROJECT_PATH}"/astronomer "${SCRIPT_PATH}"/astronomer-providers cp -r "${PROJECT_PATH}"/pyproject.toml "${SCRIPT_PATH}"/astronomer-providers cp -r "${PROJECT_PATH}"/setup.cfg "${SCRIPT_PATH}"/astronomer-providers - +echo "Listing contents of the databricks directory:" ls -la databricks # Copy examples for dag in $(find "${PROVIDER_PATH}" -type f -name 'example_*'); do cp "${dag}" "${SCRIPT_PATH}"; done;