diff --git a/.github/boring-cyborg.yml b/.github/boring-cyborg.yml index 64162e3ec1b82a..4dab03612f51af 100644 --- a/.github/boring-cyborg.yml +++ b/.github/boring-cyborg.yml @@ -647,12 +647,12 @@ labelPRBasedOnFilePath: - airflow/cli/commands/triggerer_command.py - airflow/jobs/triggerer_job_runner.py - airflow/models/trigger.py - - providers/src/airflow/providers/standard/triggers/* + - providers/src/airflow/providers/standard/triggers/**/* - tests/cli/commands/test_triggerer_command.py - tests/jobs/test_triggerer_job.py - tests/models/test_trigger.py - tests/jobs/test_triggerer_job_logging.py - - providers/tests/standard/triggers/* + - providers/tests/standard/triggers/**/* area:Serialization: - airflow/serialization/**/* diff --git a/providers/tests/standard/triggers/test_file.py b/providers/tests/standard/triggers/test_file.py index 1cebfa34a0dc4c..baf0dffa80d0a8 100644 --- a/providers/tests/standard/triggers/test_file.py +++ b/providers/tests/standard/triggers/test_file.py @@ -46,7 +46,7 @@ async def test_task_file_trigger(self, tmp_path): trigger = FileTrigger( filepath=str(p.resolve()), - poke_interval=0.5, + poke_interval=0.2, ) task = asyncio.create_task(trigger.run().__anext__())