1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00
workload-automation/wa/__init__.py
Sergei Trofimov 42539bbe0d New target description + moving target stuff under "framework"
Changing the way target descriptions work from a static mapping to
something that is dynamically generated and is extensible via plugins.
Also moving core target implementation stuff under "framework".
2017-03-06 11:10:25 +00:00

12 lines
578 B
Python

from wa.framework import pluginloader, log, signal
from wa.framework.configuration import settings
from wa.framework.plugin import Plugin, Parameter
from wa.framework.command import Command
from wa.framework.workload import Workload
from wa.framework.exception import WAError, NotFoundError, ValidationError, WorkloadError
from wa.framework.exception import HostError, JobError, InstrumentError, ConfigError
from wa.framework.exception import ResultProcessorError, ResourceError, CommandError, ToolError
from wa.framework.exception import WorkerThreadError, PluginLoaderError