blob: 58010d394c45f317b5183b44bead758dba728ba7 [file] [log] [blame]
from __future__ import print_function
import sys
def validate_files(argv=None):
retcode = 0
for filename in argv:
if (
not filename.endswith('_test.py') and
not filename.endswith('__init__.py') and
not filename.endswith('/conftest.py')
):
retcode = 1
print('{0} does not end in _test.py'.format(filename))
return retcode
if __name__ == '__main__':
sys.exit(validate_files())