2018-02-28 00:05:39 +01:00
|
|
|
#!/usr/bin/env python
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-02-28 00:05:39 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
|
|
|
with open(path, 'r') as path_fd:
|
|
|
|
for line, text in enumerate(path_fd.readlines()):
|
|
|
|
match = re.search(r'^[^;#]*?([<>=])(?!.*sanity_ok.*)', text)
|
|
|
|
|
|
|
|
if match:
|
2019-08-06 23:43:29 +02:00
|
|
|
print('%s:%d:%d: put constraints in `test/lib/ansible_test/_data/requirements/constraints.txt`' % (
|
2018-02-28 00:05:39 +01:00
|
|
|
path, line + 1, match.start(1) + 1))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|