turbaszek commented on a change in pull request #12693:
URL: https://github.com/apache/airflow/pull/12693#discussion_r532189653
##########
File path: scripts/in_container/run_install_and_test_provider_packages.sh
##########
@@ -38,6 +38,16 @@ if (($# < 1)); then
exit 2
fi
+if [[ ${AIRFLOW_VERSION} == *1.10* || ${INSTALL_AIRFLOW_VERSION} == *1.10* ]];
then
+ export RUN_AIRFLOW_1_10="true"
+ export CONSTRAINTS_BRANCH="constraints-master"
+else
+ export RUN_AIRFLOW_1_10="false"
+ export CONSTRAINTS_BRANCH="constraints-1-10"
Review comment:
```suggestion
export RUN_AIRFLOW_1_10="false"
export CONSTRAINTS_BRANCH="constraints-master"
else
export RUN_AIRFLOW_1_10="true"
export CONSTRAINTS_BRANCH="constraints-1-10"
```
Or do I miss something?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]