diff options
author | Matt Clay <matt@mystile.com> | 2021-04-06 01:48:59 +0200 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2021-04-09 00:47:23 +0200 |
commit | becf9416736dc911d3411b92f09512b4dae2955c (patch) | |
tree | 61f79d3e780b5cfb413ae2ec1c6ede5b16044031 /test/lib/ansible_test/_internal/config.py | |
parent | [cron] Remove deprecated features (#74197) (diff) | |
download | ansible-becf9416736dc911d3411b92f09512b4dae2955c.tar.xz ansible-becf9416736dc911d3411b92f09512b4dae2955c.zip |
Add PyPI proxy container for tests on Python 2.6.
Diffstat (limited to 'test/lib/ansible_test/_internal/config.py')
-rw-r--r-- | test/lib/ansible_test/_internal/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lib/ansible_test/_internal/config.py b/test/lib/ansible_test/_internal/config.py index fcae668727..eb9c1739a9 100644 --- a/test/lib/ansible_test/_internal/config.py +++ b/test/lib/ansible_test/_internal/config.py @@ -68,6 +68,9 @@ class EnvironmentConfig(CommonConfig): """ super(EnvironmentConfig, self).__init__(args, command) + self.pypi_endpoint = args.pypi_endpoint # type: str + self.pypi_proxy = args.pypi_proxy # type: bool + self.local = args.local is True self.venv = args.venv self.venv_system_site_packages = args.venv_system_site_packages |