Skip to content

Commit

Permalink
Fix ruff issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Jan 9, 2025
1 parent 263c321 commit 2226d6d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 7 additions & 3 deletions pkg_resources/tests/test_working_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,13 @@ def parametrize_test_working_set_resolve(*test_list):
)
)
return pytest.mark.parametrize(
'installed_dists,installable_dists,'
'requirements,replace_conflicting,'
'resolved_dists_or_exception',
(
"installed_dists",
"installable_dists",
"requirements",
"replace_conflicting",
"resolved_dists_or_exception",
),
argvalues,
ids=idlist,
)
Expand Down
7 changes: 6 additions & 1 deletion setuptools/tests/test_egg_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,12 @@ def parametrize(*test_list, **format_dict):
)
)
return pytest.mark.parametrize(
'requires,use_setup_cfg,expected_requires,install_cmd_kwargs',
(
"requires",
"use_setup_cfg",
"expected_requires",
"install_cmd_kwargs",
),
argvalues,
ids=idlist,
)
Expand Down

0 comments on commit 2226d6d

Please sign in to comment.