1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/sanity/code-smell/no-iterkeys.sh

20 lines
475 B
Bash
Raw Normal View History

#!/bin/sh
ITERKEYS_USERS=$(grep -r -I iterkeys . \
--exclude-dir .git \
--exclude-dir .tox \
--exclude-dir .idea \
--exclude-dir docsite \
--exclude-dir results \
| grep -v \
-e lib/ansible/module_utils/six/_six.py \
-e test/sanity/code-smell/no-iterkeys.sh \
-e '^[^:]*:#'
)
if [ "${ITERKEYS_USERS}" ]; then
echo 'iterkeys has been removed in python3. Use "for KEY in DICT:" instead'
echo "${ITERKEYS_USERS}"
exit 1
fi