diff options
author | Seth Foster <fosterseth@users.noreply.github.com> | 2024-05-21 21:05:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 21:05:59 +0200 |
commit | 0d4f6537944b7260e59ad04919290b84cb5a27b2 (patch) | |
tree | f2102e1231ccadc41fbeacfc958548011cd99cc7 /awx_collection/plugins/modules/import.py | |
parent | Update a few dev requirements (#15203) (diff) | |
download | awx-0d4f6537944b7260e59ad04919290b84cb5a27b2.tar.xz awx-0d4f6537944b7260e59ad04919290b84cb5a27b2.zip |
Fix up ansible-test sanity checks due to ansible 2.17 release (#15208)24.4.0
* Fix up ansible sanity checks
* Fix awx-collection test failure
* Add ignore for ansible-test 2.17
---------
Signed-off-by: Seth Foster <fosterbseth@gmail.com>
Co-authored-by: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com>
Diffstat (limited to 'awx_collection/plugins/modules/import.py')
-rw-r--r-- | awx_collection/plugins/modules/import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx_collection/plugins/modules/import.py b/awx_collection/plugins/modules/import.py index fe66b2a7a3..ae0180ccd1 100644 --- a/awx_collection/plugins/modules/import.py +++ b/awx_collection/plugins/modules/import.py @@ -56,7 +56,7 @@ import logging # In this module we don't use EXPORTABLE_RESOURCES, we just want to validate that our installed awxkit has import/export try: - from awxkit.api.pages.api import EXPORTABLE_RESOURCES # noqa + from awxkit.api.pages.api import EXPORTABLE_RESOURCES # noqa: F401; pylint: disable=unused-import HAS_EXPORTABLE_RESOURCES = True except ImportError: |