mik-laj edited a comment on pull request #15706:
URL: https://github.com/apache/airflow/pull/15706#issuecomment-833830097


   I think we still need to set a flag to CI script to activate parallelism. 
See: 
https://github.com/apache/airflow/blob/3b4fdd0a7a176bfb2e9a17d4627b1d4ed40f1c86/scripts/in_container/entrypoint_ci.sh#L245-L249
   We should add the following change.
   ```bash
   if [[ "${TEST_TYPE}" == "Helm" ]]; then
       # Enable parallelism
       EXTRA_PYTEST_ARGS+=(
           "-n" "auto"
       )
   else
       EXTRA_PYTEST_ARGS+=(
           "--with-db-init"
       )
   fi
   ```
   


-- 
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]


Reply via email to