summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.json7
-rw-r--r--test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.py21
2 files changed, 0 insertions, 28 deletions
diff --git a/test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.json b/test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.json
deleted file mode 100644
index 88858aeb61..0000000000
--- a/test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "extensions": [
- ".py"
- ],
- "ignore_self": true,
- "output": "path-line-column-message"
-}
diff --git a/test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.py b/test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.py
deleted file mode 100644
index 75c34f2442..0000000000
--- a/test/lib/ansible_test/_util/controller/sanity/code-smell/no-unicode-literals.py
+++ /dev/null
@@ -1,21 +0,0 @@
-"""Disallow use of the unicode_literals future."""
-from __future__ import annotations
-
-import re
-import sys
-
-
-def main():
- """Main entry point."""
- for path in sys.argv[1:] or sys.stdin.read().splitlines():
- with open(path, 'r', encoding='utf-8') as path_fd:
- for line, text in enumerate(path_fd.readlines()):
- match = re.search(r'(unicode_literals)', text)
-
- if match:
- print('%s:%d:%d: do not use `unicode_literals`' % (
- path, line + 1, match.start(1) + 1))
-
-
-if __name__ == '__main__':
- main()