pip tests: skip distribute test case for py3 compat (#49636)

This commit is contained in:
Jordan Borean 2018-12-07 10:24:46 +10:00 committed by GitHub
commit 28a903a1e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -501,6 +501,8 @@
state: absent
# https://github.com/ansible/ansible/issues/47198
# distribute is a legacy package that will fail on newer Python 3 versions
- block:
- name: make sure the virtualenv does not exist
file:
state: absent
@ -523,3 +525,4 @@
- name: inspect the cmd
assert:
that: "'distribute' in remove_distribute.cmd"
when: ansible_python.version.major == 2