Skip to content

Commit

Permalink
Fix Ruff PT006 issues (#4796)
Browse files Browse the repository at this point in the history
Fix ruff issues
  • Loading branch information
abravalheri authored Jan 9, 2025
2 parents 5c9d980 + 2226d6d commit fb7f3d3
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 @@ -300,7 +300,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 fb7f3d3

Please sign in to comment.