Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependency on unused fixtures #1941

Merged
merged 2 commits into from
Mar 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Alexander Loechel
Alexander Schepanovski
Alexandre Conrad
Allan Feldman
Andrey Bienkowski
Andrii Soldatenko
Andrzej Klajnert
Anthon van der Neuth
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/config/test_config_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_parallel_number_negative(newconfig, capsys):
assert "value must be positive" in err


def test_depends(newconfig, capsys):
def test_depends(newconfig):
config = newconfig(
"""\
[tox]
Expand All @@ -49,7 +49,7 @@ def test_depends(newconfig, capsys):
assert config.envconfigs["py"].depends == ("py37", "py36")


def test_depends_multi_row_facotr(newconfig, capsys):
def test_depends_multi_row_facotr(newconfig):
config = newconfig(
"""\
[tox]
Expand All @@ -61,7 +61,7 @@ def test_depends_multi_row_facotr(newconfig, capsys):
assert config.envconfigs["py"].depends == ("py37", "py36-a", "py36-b")


def test_depends_factor(newconfig, capsys):
def test_depends_factor(newconfig):
config = newconfig(
"""\
[tox]
Expand Down