From 187cca12259987d90c21407be188ead7e386b077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Gajdu=C5=A1ek?= Date: Thu, 21 Sep 2023 15:56:20 +0200 Subject: [PATCH] Replace flake8 with Ruff (#12621) * Replace flake8 with Ruff * Replace flake8 with Ruff * Fix UP038 - non-pep604-isinstance * Fix F401 - remove unused imports * Fix F601 - Remove repeated dictionary key * Fix not-in-test (E713) --- .flake8 | 2 -- .pre-commit-config.yaml | 13 ++++-------- pyproject.toml | 23 +++++++++++++++++++++ robottelo/constants/__init__.py | 1 - robottelo/host_helpers/satellite_mixins.py | 4 ++-- tests/foreman/api/test_multiple_paths.py | 2 +- tests/foreman/cli/test_webhook.py | 2 +- tests/foreman/endtoend/test_api_endtoend.py | 2 -- tests/foreman/ui/test_bookmarks.py | 2 +- tests/robottelo/test_datafactory.py | 2 +- tests/upgrades/conftest.py | 4 ++-- 11 files changed, 35 insertions(+), 22 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index 7da1f9608ee..00000000000 --- a/.flake8 +++ /dev/null @@ -1,2 +0,0 @@ -[flake8] -max-line-length = 100 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7626efe6a69..fb023936d75 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,22 +10,17 @@ repos: hooks: - id: trailing-whitespace exclude: tests/foreman/data/ - - id: end-of-file-fixer - id: check-yaml - id: debug-statements -- repo: https://github.com/asottile/pyupgrade - rev: v3.3.0 - hooks: - - id: pyupgrade - args: [--py38-plus] - repo: https://github.com/psf/black rev: 22.10.0 hooks: - id: black -- repo: https://github.com/pycqa/flake8 - rev: 6.0.0 +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.0.277 hooks: - - id: flake8 + - id: ruff + args: [--fix, --exit-non-zero-on-fix] - repo: local hooks: - id: fix-uuids diff --git a/pyproject.toml b/pyproject.toml index 2a45bb81ace..ae675eb552d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,29 @@ exclude = ''' )/ ''' +[tool.ruff] +target-version = "py311" +fixable = ["ALL"] + +select = [ + # "C90", # mccabe + "E", # pycodestyle + "F", # flake8 + # "Q", # flake8-quotes + "UP", # pyupgrade + "W", # pycodestyle +] + +# Allow lines to be as long as 100 characters. +line-length = 100 + + +[tool.ruff.flake8-quotes] +inline-quotes = "single" + +[tool.ruff.mccabe] +max-complexity = 20 + [tool.pytest.ini_options] junit_logging = 'all' addopts = '--show-capture=no' diff --git a/robottelo/constants/__init__.py b/robottelo/constants/__init__.py index e7236965bee..a5d7db37956 100644 --- a/robottelo/constants/__init__.py +++ b/robottelo/constants/__init__.py @@ -316,7 +316,6 @@ class Colored(Box): 'rhel7_extra': 'Red Hat Enterprise Linux 7 Server - Extras (RPMs)', 'rhel7_optional': 'Red Hat Enterprise Linux 7 Server - Optional (RPMs)', 'rhel7_sup': 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)', - 'rhst7_610': 'Red Hat Satellite Tools 6.10 (for RHEL 7 Server) (RPMs)', } SM_OVERALL_STATUS = { diff --git a/robottelo/host_helpers/satellite_mixins.py b/robottelo/host_helpers/satellite_mixins.py index bd7bedc7d57..fff44e9f6a9 100644 --- a/robottelo/host_helpers/satellite_mixins.py +++ b/robottelo/host_helpers/satellite_mixins.py @@ -143,7 +143,7 @@ def upload_manifest(self, org_id, manifest=None, interface='API', timeout=None): :returns: the manifest upload result """ - if not isinstance(manifest, (bytes, io.BytesIO)): + if not isinstance(manifest, bytes | io.BytesIO): if manifest.content is None: manifest = clone() if timeout is None: @@ -161,7 +161,7 @@ def upload_manifest(self, org_id, manifest=None, interface='API', timeout=None): {'file': manifest.filename, 'organization-id': org_id}, timeout=timeout ) else: - if not isinstance(manifest, (bytes, io.BytesIO)): + if not isinstance(manifest, bytes | io.BytesIO): manifest = manifest.content result = self.api.Subscription().upload( data={'organization_id': org_id}, files={'content': manifest} diff --git a/tests/foreman/api/test_multiple_paths.py b/tests/foreman/api/test_multiple_paths.py index bf975ce7f58..f2966bfa018 100644 --- a/tests/foreman/api/test_multiple_paths.py +++ b/tests/foreman/api/test_multiple_paths.py @@ -92,7 +92,7 @@ def _get_readable_attributes(entity): for field_name in list(attributes.keys()): if isinstance( entity.get_fields()[field_name], - (entity_fields.OneToOneField, entity_fields.OneToManyField), + entity_fields.OneToOneField | entity_fields.OneToManyField, ): del attributes[field_name] diff --git a/tests/foreman/cli/test_webhook.py b/tests/foreman/cli/test_webhook.py index 110b8a08860..002d1b360ec 100644 --- a/tests/foreman/cli/test_webhook.py +++ b/tests/foreman/cli/test_webhook.py @@ -57,7 +57,7 @@ def _create_webhook(org, loc, options=None): def assert_created(options, hook): for option in options.items(): - if not option[0] in ['event', 'organization-id', 'location-id']: + if option[0] not in ['event', 'organization-id', 'location-id']: assert hook[option[0]] == option[1] diff --git a/tests/foreman/endtoend/test_api_endtoend.py b/tests/foreman/endtoend/test_api_endtoend.py index e29032e918f..f9471e1bbb7 100644 --- a/tests/foreman/endtoend/test_api_endtoend.py +++ b/tests/foreman/endtoend/test_api_endtoend.py @@ -17,7 +17,6 @@ :Upstream: No """ import http -import random from collections import defaultdict from pprint import pformat @@ -35,7 +34,6 @@ from robottelo.config import user_nailgun_config from robottelo.constants.repos import CUSTOM_RPM_REPO from robottelo.utils.issue_handlers import is_open -from robottelo.utils.manifest import clone API_PATHS = { diff --git a/tests/foreman/ui/test_bookmarks.py b/tests/foreman/ui/test_bookmarks.py index f33483a0c42..cb0201a814b 100644 --- a/tests/foreman/ui/test_bookmarks.py +++ b/tests/foreman/ui/test_bookmarks.py @@ -42,7 +42,7 @@ def ui_entity(module_org, module_location, request): # Skip the entities, which can't be tested ATM (not implemented in # airgun or have open BZs) skip = entity.get('skip_for_ui') - if isinstance(skip, (tuple, list)): + if isinstance(skip, tuple | list): open_issues = {issue for issue in skip if is_open(issue)} pytest.skip(f'There is/are an open issue(s) {open_issues} with entity {entity_name}') # entities with 1 organization and location diff --git a/tests/robottelo/test_datafactory.py b/tests/robottelo/test_datafactory.py index 7d5a6c12b7e..04e081a9b39 100644 --- a/tests/robottelo/test_datafactory.py +++ b/tests/robottelo/test_datafactory.py @@ -127,7 +127,7 @@ def test_return_type(self): ): assert isinstance(item, str) for item in datafactory.invalid_id_list(): - if not (isinstance(item, (str, int)) or item is None): + if not (isinstance(item, str | int) or item is None): pytest.fail('Unexpected data type') diff --git a/tests/upgrades/conftest.py b/tests/upgrades/conftest.py index 46473b916aa..51f440c1a7e 100644 --- a/tests/upgrades/conftest.py +++ b/tests/upgrades/conftest.py @@ -249,7 +249,7 @@ def test_something_post_upgrade(pre_upgrade_data): dependant_on_functions = [] for marker in request.node.iter_markers(POST_UPGRADE_MARK): depend_on = marker.kwargs.get('depend_on') - if isinstance(depend_on, (list, tuple)): + if isinstance(depend_on, list | tuple): dependant_on_functions.extend(depend_on) elif depend_on is not None: dependant_on_functions.append(depend_on) @@ -403,7 +403,7 @@ def pytest_collection_modifyitems(items, config): dependant_on_functions = [] for marker in item.iter_markers(POST_UPGRADE_MARK): depend_on = marker.kwargs.get('depend_on') - if isinstance(depend_on, (list, tuple)): + if isinstance(depend_on, list | tuple): dependant_on_functions.extend(depend_on) elif depend_on is not None: dependant_on_functions.append(depend_on)