From dcb17e18002fc82894de3bb5fbe551debdb453d0 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 26 May 2015 13:42:36 -0500 Subject: [PATCH] Only run the interpreter check once --- ansible_testing/modules.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible_testing/modules.py b/ansible_testing/modules.py index f9984c3f911..c70b274114d 100644 --- a/ansible_testing/modules.py +++ b/ansible_testing/modules.py @@ -290,7 +290,6 @@ class ModuleValidator(Validator): self.warnings.append('No RETURN provided') if self._python_module() and not self._just_docs(): - self._check_interpreter() self._check_for_sys_exit() self._find_json_import() main = self._find_main_call()