Warning

This document is for an old release 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, api_key=None): self.functional_test_case = functional_test_case super().__init__( galaxy_url=functional_test_case.url, master_api_key=getattr(functional_test_case, "master_api_key", None), api_key=api_key or getattr(functional_test_case, "user_api_key", None), test_user=test_user, keep_outputs_dir=getattr(functional_test_case, "keepOutdir", None), )