diff --git a/lib/galaxy_test/api/test_workflows.py b/lib/galaxy_test/api/test_workflows.py index 4eec65904541..89129d1dcb68 100644 --- a/lib/galaxy_test/api/test_workflows.py +++ b/lib/galaxy_test/api/test_workflows.py @@ -3082,6 +3082,15 @@ def test_workflow_invocation_report_custom(self): assert "## Workflow Inputs" in markdown_content assert "## About This Report" in markdown_content + @skip_without_tool("cat1") + def test_export_invocation_bco(self): + with self.dataset_populator.test_history() as history_id: + summary = self._run_workflow(WORKFLOW_SIMPLE, test_data={"input1": "hello world"}, history_id=history_id) + invocation_id = summary.invocation_id + bco = self.workflow_populator.download_invocation_to_store(invocation_id, extension="bco.json") + self.workflow_populator.validate_biocompute_object(bco) + assert bco["provenance_domain"]["name"] == "Simple Workflow" + @skip_without_tool("cat1") def test_export_invocation_ro_crate(self): with self.dataset_populator.test_history() as history_id: