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.base.interactor
from galaxy.tool_util.verify.interactor import GalaxyInteractorApi
[docs]class TestCaseGalaxyInteractor(GalaxyInteractorApi):
[docs] def __init__(self, functional_test_case, test_user=None):
self.functional_test_case = functional_test_case
super(TestCaseGalaxyInteractor, self).__init__(
galaxy_url=functional_test_case.url,
master_api_key=functional_test_case.master_api_key,
api_key=functional_test_case.user_api_key,
test_user=test_user,
keep_outputs_dir=getattr(functional_test_case, "keepOutdir", None),
)