mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 04:21:17 +00:00
f498f0acdc
Export RunOutput and discover_wa_outputs from the main __init__.py allowing them to be directly imported from wa.
21 lines
1.2 KiB
Python
21 lines
1.2 KiB
Python
from wa.framework import pluginloader, signal
|
|
from wa.framework.command import Command, ComplexCommand, SubCommand
|
|
from wa.framework.configuration import settings
|
|
from wa.framework.configuration.core import Status
|
|
from wa.framework.exception import HostError, JobError, InstrumentError, ConfigError
|
|
from wa.framework.exception import (ResultProcessorError, ResourceError,
|
|
CommandError, ToolError)
|
|
from wa.framework.exception import (WAError, NotFoundError, ValidationError,
|
|
WorkloadError)
|
|
from wa.framework.exception import WorkerThreadError, PluginLoaderError
|
|
from wa.framework.instrumentation import (Instrument, very_slow, slow, normal, fast,
|
|
very_fast)
|
|
from wa.framework.output import RunOutput, discover_wa_outputs
|
|
from wa.framework.plugin import Plugin, Parameter
|
|
from wa.framework.processor import ResultProcessor
|
|
from wa.framework.resource import (NO_ONE, JarFile, ApkFile, ReventFile, File,
|
|
Executable)
|
|
from wa.framework.workload import (Workload, ApkWorkload, ApkUiautoWorkload,
|
|
ApkReventWorkload, UIWorkload, UiautoWorkload,
|
|
ReventWorkload)
|