diff options
author | Matt Clay <mclay@redhat.com> | 2021-05-10 18:25:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 18:25:53 -0700 |
commit | d244e47822e7e45f22ff5f509712065b944c02d9 (patch) | |
tree | 80d9f66bae0cdfd62eb3df4f8338ddd91cef08e2 /.azure-pipelines | |
parent | 7b0c4845d982559f74be81cf7ee2ba7a974aafae (diff) | |
download | ansible-d244e47822e7e45f22ff5f509712065b944c02d9.tar.gz |
Update Python versions for controller-only tests. (#74652)
* Update Python versions for controller-only tests.
Both `ansible-galaxy` and `ansible-test` integration tests only run on the controller.
* Use a venv to make requirements available.
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/azure-pipelines.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index a08046321a..aa83203d58 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -147,8 +147,9 @@ stages: nameFormat: Python {0} testFormat: galaxy/{0}/1 targets: - - test: 2.7 - - test: 3.6 + - test: 3.8 + - test: 3.9 + - test: '3.10' - stage: Generic dependsOn: [] jobs: @@ -157,8 +158,9 @@ stages: nameFormat: Python {0} testFormat: generic/{0}/1 targets: - - test: 2.7 + - test: 3.8 - test: 3.9 + - test: '3.10' - stage: Incidental_Remote displayName: Incidental Remote dependsOn: [] |