diff options
author | Matt Clay <matt@mystile.com> | 2020-06-12 03:58:53 +0200 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2020-06-12 04:27:40 +0200 |
commit | 26f318d2772c2590082ecaf256f6bfc9d10138ff (patch) | |
tree | bcefca1872d47e3b080a2651e67ac194000ebf80 | |
parent | fix discovery on loop with delegation (#70013) (diff) | |
download | ansible-26f318d2772c2590082ecaf256f6bfc9d10138ff.tar.xz ansible-26f318d2772c2590082ecaf256f6bfc9d10138ff.zip |
Ignore return code from antsibull_changelog lint.
-rwxr-xr-x | test/lib/ansible_test/_data/sanity/code-smell/changelog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/ansible_test/_data/sanity/code-smell/changelog.py b/test/lib/ansible_test/_data/sanity/code-smell/changelog.py index 2a963d5f9b..60bbdfc2c6 100755 --- a/test/lib/ansible_test/_data/sanity/code-smell/changelog.py +++ b/test/lib/ansible_test/_data/sanity/code-smell/changelog.py @@ -38,7 +38,7 @@ def main(): return cmd = [sys.executable, '-m', 'antsibull_changelog', 'lint'] + paths_to_check - subprocess.check_call(cmd) + subprocess.call(cmd) # ignore the return code, rely on the output instead if __name__ == '__main__': |