potiuk commented on code in PR #30305:
URL: https://github.com/apache/airflow/pull/30305#discussion_r1148543479
##########
dev/breeze/src/airflow_breeze/commands/testing_commands.py:
##########
@@ -270,7 +278,7 @@ def run_tests_in_parallel(
memory_available = psutil.virtual_memory()
if memory_available.available < LOW_MEMORY_CONDITION and
exec_shell_params.backend in ["mssql", "mysql"]:
# Run heavy tests sequentially
- heavy_test_types_to_run = {"Core", "Providers"} & set(test_types_list)
+ heavy_test_types_to_run = {"Core"} & set(test_types_list)
Review Comment:
I **think** this will make Providers tests safe to run for Public runners -
each of them will require much less of memory and the way it is done where each
"provider" test will run in their separate docker container that will be torn
down immediately when the test type completes, we will continuously reclaim
resources from each test type while we are running the tests on Public runners.
--
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]