diff options
author | Matt Clay <matt@mystile.com> | 2023-10-05 00:11:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 00:11:17 +0200 |
commit | 9f899f94924fafeb330b1e8b18c970742da56e0d (patch) | |
tree | f0f250716e1b190097ac289b5657b5dfd058389a /test/units/galaxy | |
parent | ansible-test - Remove more Python 2.7 / 3.6 support (#81898) (diff) | |
download | ansible-9f899f94924fafeb330b1e8b18c970742da56e0d.tar.xz ansible-9f899f94924fafeb330b1e8b18c970742da56e0d.zip |
Require `from __future__ import annotations` (#81902)
Diffstat (limited to 'test/units/galaxy')
-rw-r--r-- | test/units/galaxy/test_api.py | 4 | ||||
-rw-r--r-- | test/units/galaxy/test_collection.py | 4 | ||||
-rw-r--r-- | test/units/galaxy/test_collection_install.py | 4 | ||||
-rw-r--r-- | test/units/galaxy/test_role_install.py | 4 | ||||
-rw-r--r-- | test/units/galaxy/test_role_requirements.py | 4 | ||||
-rw-r--r-- | test/units/galaxy/test_token.py | 4 | ||||
-rw-r--r-- | test/units/galaxy/test_user_agent.py | 3 |
7 files changed, 7 insertions, 20 deletions
diff --git a/test/units/galaxy/test_api.py b/test/units/galaxy/test_api.py index b019f1aa16..b94bbb1f25 100644 --- a/test/units/galaxy/test_api.py +++ b/test/units/galaxy/test_api.py @@ -2,9 +2,7 @@ # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import json import os diff --git a/test/units/galaxy/test_collection.py b/test/units/galaxy/test_collection.py index e8230d2107..3030d7b701 100644 --- a/test/units/galaxy/test_collection.py +++ b/test/units/galaxy/test_collection.py @@ -2,9 +2,7 @@ # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import json import os diff --git a/test/units/galaxy/test_collection_install.py b/test/units/galaxy/test_collection_install.py index a61ae40683..9ab0f1a94b 100644 --- a/test/units/galaxy/test_collection_install.py +++ b/test/units/galaxy/test_collection_install.py @@ -2,9 +2,7 @@ # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import copy import json diff --git a/test/units/galaxy/test_role_install.py b/test/units/galaxy/test_role_install.py index 96ae0ce0d4..404c8e91e0 100644 --- a/test/units/galaxy/test_role_install.py +++ b/test/units/galaxy/test_role_install.py @@ -2,9 +2,7 @@ # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import os diff --git a/test/units/galaxy/test_role_requirements.py b/test/units/galaxy/test_role_requirements.py index a84bbb52ed..6b7011a500 100644 --- a/test/units/galaxy/test_role_requirements.py +++ b/test/units/galaxy/test_role_requirements.py @@ -2,9 +2,7 @@ # Copyright: (c) 2020, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import pytest diff --git a/test/units/galaxy/test_token.py b/test/units/galaxy/test_token.py index 9fc12d4672..a02076e640 100644 --- a/test/units/galaxy/test_token.py +++ b/test/units/galaxy/test_token.py @@ -2,9 +2,7 @@ # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import os import pytest diff --git a/test/units/galaxy/test_user_agent.py b/test/units/galaxy/test_user_agent.py index da0103f395..f771324b2d 100644 --- a/test/units/galaxy/test_user_agent.py +++ b/test/units/galaxy/test_user_agent.py @@ -2,8 +2,7 @@ # Copyright: (c) 2019, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import platform |