summaryrefslogtreecommitdiffstats
path: root/test/lib/ansible_test/_util
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-11-02 19:13:41 +0100
committerMatt Clay <matt@mystile.com>2023-11-02 19:42:02 +0100
commit9765bb46f9e6fd6cab1d3c9e389d3603fffea3b4 (patch)
tree0f371455fdaee538634f3e84a032d74db53ad6db /test/lib/ansible_test/_util
parentRemove unused test support plugins (diff)
downloadansible-9765bb46f9e6fd6cab1d3c9e389d3603fffea3b4.tar.xz
ansible-9765bb46f9e6fd6cab1d3c9e389d3603fffea3b4.zip
ansible-test - Remove no-unicode-literals test
Diffstat (limited to 'test/lib/ansible_test/_util')
-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()