Skip to content

Commit

Permalink
Debug: Remove try except block
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro committed Oct 28, 2024
1 parent 0d99128 commit f80f519
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_dag_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_dag_runs(setup_airflow_db, dag_id, dag, fileloc):
if dag_id != "Ray_Taskflow_Example":
return

try:
dag.test()
except Exception as e:
pytest.fail(f"Error running DAG {dag_id}: {e}")
#try:
dag.test()
# except Exception as e:
# pytest.fail(f"Error running DAG {dag_id}: {e}")

0 comments on commit f80f519

Please sign in to comment.