18867847f4
* Relocate ansible-only sanity tests. * Get "code smell" sanity tests from multiple dirs. - `test/lib/ansible_test/_data/sanity/code-smell/` - General purpose tests used for both Ansible and Ansible Collections. - `test/sanity/code-smell/` - Tests specific to Ansible, will not be used for Ansible Collections.
26 lines
623 B
Python
Executable file
26 lines
623 B
Python
Executable file
#!/usr/bin/env python
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
|
|
|
|
def main():
|
|
paths = sys.argv[1:] or sys.stdin.read().splitlines()
|
|
|
|
allowed_extensions = ('.yml', '.yaml')
|
|
|
|
for path in paths:
|
|
ext = os.path.splitext(path)[1]
|
|
|
|
if ext not in allowed_extensions:
|
|
print('%s:%d:%d: extension must be one of: %s' % (path, 0, 0, ', '.join(allowed_extensions)))
|
|
|
|
cmd = ['packaging/release/changelogs/changelog.py', 'lint'] + paths
|
|
subprocess.check_call(cmd)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|