diff options
author | Matt Clay <matt@mystile.com> | 2020-04-26 03:55:39 +0200 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2020-05-15 02:08:30 +0200 |
commit | d8e0aadc0d630c776349b745243c20b62f22ebec (patch) | |
tree | 1d9a08a1ad10aa35a2c0c94a40c411d586cf1445 /test/lib/ansible_test/_internal/metadata.py | |
parent | Remove obsolete incidental test. (diff) | |
download | ansible-d8e0aadc0d630c776349b745243c20b62f22ebec.tar.xz ansible-d8e0aadc0d630c776349b745243c20b62f22ebec.zip |
Update ansible-test support for CI providers.
Refactored CI provider code to simplify multiple provider support and addition of new providers.
Diffstat (limited to 'test/lib/ansible_test/_internal/metadata.py')
-rw-r--r-- | test/lib/ansible_test/_internal/metadata.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/lib/ansible_test/_internal/metadata.py b/test/lib/ansible_test/_internal/metadata.py index 389836e634..36575d0c73 100644 --- a/test/lib/ansible_test/_internal/metadata.py +++ b/test/lib/ansible_test/_internal/metadata.py @@ -6,7 +6,6 @@ from . import types as t from .util import ( display, - is_shippable, ) from .io import ( @@ -28,11 +27,7 @@ class Metadata: self.cloud_config = None # type: t.Optional[t.Dict[str, str]] self.instance_config = None # type: t.Optional[t.List[t.Dict[str, str]]] self.change_description = None # type: t.Optional[ChangeDescription] - - if is_shippable(): - self.ci_provider = 'shippable' - else: - self.ci_provider = '' + self.ci_provider = None # type: t.Optional[str] def populate_changes(self, diff): """ |