diff --git a/tests/test_cli_compile.py b/tests/test_cli_compile.py index a456bdf8..c816de4d 100644 --- a/tests/test_cli_compile.py +++ b/tests/test_cli_compile.py @@ -3353,9 +3353,6 @@ def test_default_config_option(pip_conf, runner, make_config_file, tmpdir_cwd): out = runner.invoke(cli) - print(out.stdout) - print(out.stderr) - assert out.exit_code == 0 assert "Dry-run, so nothing updated" in out.stderr diff --git a/tests/test_utils.py b/tests/test_utils.py index a1ef494b..37743534 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -810,7 +810,9 @@ def test_select_config_file_prefers_pip_tools_toml_over_pyproject_toml(tmpdir_cw assert select_config_file(()) == pip_tools_file -def test_select_config_file_with_config_file_in_different_directory(tmpdir_cwd, make_config_file): +def test_select_config_file_with_config_file_in_different_directory( + tmpdir_cwd, make_config_file +): config_file = make_config_file("dry-run", True, ".pip-tools.toml") (tmpdir_cwd / "subdir").mkdir()