mirror of
https://github.com/ansible/awx.git
synced 2026-03-16 00:17:29 -02:30
* Purging old task manager unit tests * Migrating those tests to functional tests * Updating fixtures and factories to support a change in the way the task manager is tested * Fix an issue with the mk_credential fixture when used in functional tests. Previously it had trouble with multiplel invocations when persistence was used
25 lines
486 B
Python
25 lines
486 B
Python
from .tower import (
|
|
create_instance,
|
|
create_instance_group,
|
|
create_organization,
|
|
create_job_template,
|
|
create_notification_template,
|
|
create_survey_spec,
|
|
create_workflow_job_template,
|
|
)
|
|
|
|
from .exc import (
|
|
NotUnique,
|
|
)
|
|
|
|
__all__ = [
|
|
'create_instance',
|
|
'create_instance_group',
|
|
'create_organization',
|
|
'create_job_template',
|
|
'create_notification_template',
|
|
'create_survey_spec',
|
|
'create_workflow_job_template',
|
|
'NotUnique',
|
|
]
|