Warning

This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy_test.api.test_workflows_cwl

"""Test CWL workflow functionality."""

from galaxy_test.api.test_workflows import BaseWorkflowsApiTestCase
from galaxy_test.base.populators import CwlPopulator


[docs]class BaseCwlWorkflowsApiTestCase(BaseWorkflowsApiTestCase): allow_path_paste = True require_admin_user = True
[docs] def setUp(self): super().setUp() self.cwl_populator = CwlPopulator(self.dataset_populator, self.workflow_populator)