diff options
author | Matt Clay <mclay@redhat.com> | 2021-01-13 01:18:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-13 01:18:28 +0100 |
commit | 21f1811ddf5699baeeb9998fe61d2f6cddc08975 (patch) | |
tree | 41a8e3421d8abfd5176195172c62b84d85f47e9a /test/lib/ansible_test/_internal/config.py | |
parent | Added clog missing for issue 70722 (#73175) (diff) | |
download | ansible-21f1811ddf5699baeeb9998fe61d2f6cddc08975.tar.xz ansible-21f1811ddf5699baeeb9998fe61d2f6cddc08975.zip |
Cleanup provisioning code in ansible-test. (#73207)
* Remove unused code in ansible-test.
* Remove obsolete endpoint logic from ansible-test.
* Remove obsolete region selection in ansible-test.
* Remove obsolete port logic in ansible-test.
* Clean up ansible-test remote providers.
Diffstat (limited to 'test/lib/ansible_test/_internal/config.py')
-rw-r--r-- | test/lib/ansible_test/_internal/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lib/ansible_test/_internal/config.py b/test/lib/ansible_test/_internal/config.py index 211e585610..d50af53833 100644 --- a/test/lib/ansible_test/_internal/config.py +++ b/test/lib/ansible_test/_internal/config.py @@ -99,7 +99,6 @@ class EnvironmentConfig(CommonConfig): self.remote_stage = args.remote_stage # type: str self.remote_provider = args.remote_provider # type: str self.remote_endpoint = args.remote_endpoint # type: t.Optional[str] - self.remote_aws_region = args.remote_aws_region # type: str self.remote_terminate = args.remote_terminate # type: str if self.remote_provider == 'default': |