mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 02:21:32 +08:00
24 lines
769 B
Python
24 lines
769 B
Python
"""Integration tests for the Pulsar embedded runner."""
|
|
|
|
import os
|
|
|
|
from base import integration_util
|
|
|
|
SCRIPT_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
|
|
EMBEDDED_PULSAR_JOB_CONFIG_FILE = os.path.join(SCRIPT_DIRECTORY, "embedded_pulsar_metadata_job_conf.xml")
|
|
|
|
|
|
class EmbeddedPulsarIntegrationInstance(integration_util.IntegrationInstance):
|
|
"""Describe a Galaxy test instance with embedded pulsar configured."""
|
|
|
|
framework_tool_and_types = True
|
|
|
|
@classmethod
|
|
def handle_galaxy_config_kwds(cls, config):
|
|
config["job_config_file"] = EMBEDDED_PULSAR_JOB_CONFIG_FILE
|
|
|
|
|
|
instance = integration_util.integration_module_instance(EmbeddedPulsarIntegrationInstance)
|
|
|
|
test_tools = integration_util.integration_tool_runner(["simple_constructs"])
|