mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-05 07:49:10 -07:00
Enable Python 3.7 in ansible-test.
This commit is contained in:
parent
782aca9a72
commit
f9cd50411f
5 changed files with 21 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
centos6@sha256:41eb4b870ce400202945ccf572d45bf5f2f5ebb50e9dee244de73b9d0278db30
|
||||
centos7@sha256:bd571611112cccefdaa951ea640177cbb77c8ee011f958d2562781d90594ea9c
|
||||
default@sha256:424161033bf1342bc463c27c5fad182c171aa3bc17b3c1fe7aac44623cc8d304
|
||||
default@sha256:be3e82e89459b7e4dabb2ca9bd6270c8672ad76582f85bc9184957781198d219
|
||||
fedora24@sha256:7b642c5d25b779a3a605fb8f70d9d92972f2004a5266fe364264809899fb1117
|
||||
fedora25@sha256:828c71d87f1636f4d09916b8e2d87fc9a615d361a9afed22e8843ffb3d2729d2
|
||||
opensuse42.2@sha256:3c59cd694fe69860d299a10afaa84f4e0b3db0c4139232431e9801e1a0775b0a
|
||||
|
|
|
@ -103,6 +103,7 @@ SUPPORTED_PYTHON_VERSIONS = (
|
|||
'2.7',
|
||||
'3.5',
|
||||
'3.6',
|
||||
'3.7',
|
||||
)
|
||||
|
||||
COMPILE_PYTHON_VERSIONS = SUPPORTED_PYTHON_VERSIONS
|
||||
|
|
|
@ -42,6 +42,10 @@ class AnsibleDocTest(SanityMultipleVersion):
|
|||
if not modules:
|
||||
return SanitySkipped(self.name, python_version=python_version)
|
||||
|
||||
# ansible-doc fails due to async syntax errors on Python 3.7 currently
|
||||
if python_version == '3.7':
|
||||
return SanitySkipped(self.name, python_version=python_version)
|
||||
|
||||
env = ansible_environment(args, color=False)
|
||||
cmd = ['ansible-doc'] + modules
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue