Skip to content

Commit

Permalink
Stop pinning zipp by default in [pytest].pytest_plugins
Browse files Browse the repository at this point in the history
# Rust tests and lints will be skipped. Delete if not intended.
[ci skip-rust]

# Building wheels and fs_util will be skipped. Delete if not intended.
[ci skip-build-wheels]
  • Loading branch information
Eric-Arellano committed Feb 2, 2021
1 parent 31e540a commit 9c4b5ad
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/python/pants/backend/python/subsystems/pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,10 @@ def register_options(cls, register):
"--pytest-plugins",
type=list,
advanced=True,
default=[
"pytest-cov>=2.10.1,<2.11",
# NB: zipp has frequently destabilized builds due to floating transitive versions
# under pytest.
"zipp==2.1.0",
],
help="Requirement strings for any plugins or additional requirements you'd like to use.",
default=["pytest-cov>=2.10.1,<2.11"],
help=(
"Requirement strings for any plugins or additional requirements you'd like to use."
),
)
register(
"--timeouts",
Expand Down

0 comments on commit 9c4b5ad

Please sign in to comment.