potiuk commented on code in PR #24236: URL: https://github.com/apache/airflow/pull/24236#discussion_r896861965
########## dev/breeze/src/airflow_breeze/commands/testing_commands.py: ########## @@ -122,10 +226,19 @@ def docker_compose_tests( ) @option_dry_run @option_verbose +@option_python +@option_backend +@option_postgres_version +@option_mysql_version +@option_mssql_version @option_integration [email protected]( + '--limit-progress-output', + help="Limit progress to percentage only and just show the summary when tests complete.", + is_flag=True, +) @click.argument('extra_pytest_args', nargs=-1, type=click.UNPROCESSED) @click.option( - "-tt", Review Comment: It was a mistake :). Generally the direction I steer breeze to is that longer options are preferred, and shorter ones are only for things that you are using very, very often. Short options are generally evil IMHO and they are only justified if you use them enough time that tyou want to get muscle memory kick in. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
