1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-19 04:21:17 +00:00

wa: export target descriptor API

- Add exports for target descriptor API.
- Arrange exports alphabetically
This commit is contained in:
Sergei Trofimov 2018-03-01 16:18:18 +00:00 committed by Marc Bonnici
parent 10f79c37c2
commit eacc319239

View File

@ -10,10 +10,12 @@ from wa.framework.exception import (CommandError, ConfigError, HostError, Instru
from wa.framework.instrument 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.output_processor import OutputProcessor
from wa.framework.plugin import Plugin, Parameter
from wa.framework.resource import (NO_ONE, JarFile, ApkFile, ReventFile, File,
Executable)
from wa.framework.target.descriptor import (TargetDescriptor, TargetDescription,
create_target_description, add_description_for_target)
from wa.framework.workload import (Workload, ApkWorkload, ApkUiautoWorkload,
ApkReventWorkload, UIWorkload, UiautoWorkload,
ReventWorkload)