The GitHub Actions job "Tests" on airflow.git has failed. Run started by GitHub user ephraimbuddy (triggered by ephraimbuddy).
Head commit for run: 2c40bf61ec83f42810f1cfc297e00be424bdf5bd / Ephraim Anierobi <[email protected]> Allow users to control task_ids in decorated task more This opens up the possibility of using one decorated task in different dag files. Take for example the below task: - common.py @task(task_id='hello') def hello(): print('Hello') defined in a file and called in different dag files using different task ids: - dag_file1.py: from common import hello @dag() def mydag(): for i in range(3): hello(task_id=f'myhellotask_{i}') - dag_file2.py: from common import hello @dag(): def mydag2(): for i in range(3): hello(task_id=f'welcome_message_{i}') They would all run with different task ids Report URL: https://github.com/apache/airflow/actions/runs/2153831732 With regards, GitHub Actions via GitBox --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
