mirror of https://github.com/ansible/ansible
(cherry picked from commit bae4284)
pull/86817/head
parent
dd779127a1
commit
3b89cd22bb
@ -0,0 +1,2 @@
|
||||
minor_changes:
|
||||
- ansible-test - Generate ``dist_info`` when running tests.
|
||||
@ -0,0 +1,3 @@
|
||||
shippable/posix/group3 # runs in the distro test containers
|
||||
shippable/generic/group1 # runs in the default test container
|
||||
context/controller
|
||||
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
# Verify that importlib.metadata can find ansible-core using the PYTHONPATH set by ansible-test.
|
||||
# Regression test for https://github.com/ansible/ansible/issues/86695
|
||||
|
||||
set -eux
|
||||
|
||||
VERSION=$(python -c "from importlib.metadata import version; print(version('ansible-core'))")
|
||||
|
||||
test "$VERSION" = "$ANSIBLE_TEST_ANSIBLE_VERSION"
|
||||
Loading…
Reference in new issue