Kengo Seki created AIRFLOW-143:
----------------------------------
Summary: setup_env.sh doesn't leverage cache for downloading
minicluster
Key: AIRFLOW-143
URL: https://issues.apache.org/jira/browse/AIRFLOW-143
Project: Apache Airflow
Issue Type: Bug
Components: tests
Reporter: Kengo Seki
Priority: Minor
In scripts/ci/setup_env.sh:
{code}
105 echo "Downloading and unpacking minicluster"
106 rm -rf ${TRAVIS_CACHE}/minicluster/minicluster.zip
107 curl -z ${TRAVIS_CACHE}/minicluster/minicluster.zip -o
${TRAVIS_CACHE}/minicluster/minicluster.zip -L ${MINICLUSTER_URL}
108 unzip ${TRAVIS_CACHE}/minicluster/minicluster.zip -d /tmp
{code}
-z option is specified at line 107, but it doesn't seem to make sense because
the cache is removed at line 106.
I think removing cache is unnecessary.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)