mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 14:21:26 -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
|
@ -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