diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 1e085ba70..55dd6d1b3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -4,6 +4,7 @@ Alexander Loechel Alexander Schepanovski Alexandre Conrad Allan Feldman +Andrey Bienkowski Andrii Soldatenko Andrzej Klajnert Anthon van der Neuth diff --git a/tests/unit/config/test_config_parallel.py b/tests/unit/config/test_config_parallel.py index 785b77104..0e42a2c59 100644 --- a/tests/unit/config/test_config_parallel.py +++ b/tests/unit/config/test_config_parallel.py @@ -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] @@ -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] @@ -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]