diff options
author | Matt Clay <mclay@redhat.com> | 2021-11-05 01:20:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 01:20:17 +0100 |
commit | f42ffe16d29f00cca38b7b53566e18d36edfc461 (patch) | |
tree | d2d15c0c0efe6aaaa98fd235fff8f7d215b0cc83 /test/integration/targets/setup_paramiko/install-Fedora-35-python-3.yml | |
parent | Remove install of setuptools in venv for pip test. (diff) | |
download | ansible-f42ffe16d29f00cca38b7b53566e18d36edfc461.tar.xz ansible-f42ffe16d29f00cca38b7b53566e18d36edfc461.zip |
ansible-test - Add Fedora 35 test container. (#76228)
* ansible-test - Add Fedora 35 test container.
* Added Fedora 35 to CI and removed Fedora 33 from CI.
* Fix dnf integration test.
* Fix connection_paramiko_ssh test.
Diffstat (limited to 'test/integration/targets/setup_paramiko/install-Fedora-35-python-3.yml')
-rw-r--r-- | test/integration/targets/setup_paramiko/install-Fedora-35-python-3.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/integration/targets/setup_paramiko/install-Fedora-35-python-3.yml b/test/integration/targets/setup_paramiko/install-Fedora-35-python-3.yml new file mode 100644 index 0000000000..bbe97a9639 --- /dev/null +++ b/test/integration/targets/setup_paramiko/install-Fedora-35-python-3.yml @@ -0,0 +1,9 @@ +- name: Install Paramiko and crypto policies scripts + dnf: + name: + - crypto-policies-scripts + - python3-paramiko + install_weak_deps: no + +- name: Drop the crypto-policy to LEGACY for these tests + command: update-crypto-policies --set LEGACY |