Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ def app():
yield app


@pytest.mark.db_test
def test_get_task_instance(app):
with app.app_context():
operator = Mock()
Expand All @@ -143,6 +144,7 @@ def test_get_task_instance(app):
assert result == dag_run


@pytest.mark.db_test
def test_workflow_job_run_link(app):
with app.app_context():
link = WorkflowJobRunLink()
Expand Down Expand Up @@ -177,6 +179,7 @@ def test_workflow_job_run_link(app):
assert "https://mockhost/#job/1/run/1" in result


@pytest.mark.db_test
def test_workflow_job_repair_single_failed_link(app):
with app.app_context():
link = WorkflowJobRepairSingleTaskLink()
Expand Down