mobuchowski commented on code in PR #40589:
URL: https://github.com/apache/airflow/pull/40589#discussion_r1677203689
##########
tests/providers/openlineage/test_conf.py:
##########
@@ -487,3 +489,20 @@ def test_dag_state_change_process_pool_size(var_string,
expected):
with conf_vars({(_CONFIG_SECTION,
_CONFIG_OPTION_DAG_STATE_CHANGE_PROCESS_POOL_SIZE): var_string}):
result = dag_state_change_process_pool_size()
assert result == expected
+
+
[email protected](
+ ("var", "expected"),
+ (
+ ("False", False),
+ ("True", True),
+ ("t", True),
+ ("a", False),
+ ("asdf", False),
+ ("31", False),
+ ("true", True),
Review Comment:
Split the tests due to changes discussed below.
--
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]