ansible/test/lib/ansible_test
Gonéri Le Bouder 7cf80f50d1
validate_modules: fails with .id attribute not found (#73322)
* validate_modules: fails with .id attribute not found

This patch addresses a problem in the `found_try_except_import` test.

This module tries to identify lines like:

`HAS_FOO = True`

In this case, the target (`HAS_FOO`) is of type `ast.Name` and has a
`id` attribute which provide the name.

In my case, I've a line that set a module attribute`. In this case, the
target (`module.var`) has the type `ast.Attribute` and no `id`
attribute. The code trigger an `AttributeError` exception.

This patch ensures we compare a `ast.Name`.

* Update test/lib/ansible_test/_data/sanity/validate-modules/validate_modules/main.py
2021-02-02 13:29:36 -08:00
..
_data validate_modules: fails with .id attribute not found (#73322) 2021-02-02 13:29:36 -08:00
_internal Overhaul ansible-test SSH key management. (#73451) 2021-02-02 08:43:54 -08:00
config Remove obsolete tower plugin from ansible-test. 2021-01-13 12:37:21 -08:00
__init__.py