Skip to content

Commit

Permalink
Try to investigate test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysle committed Aug 15, 2024
1 parent abb8699 commit 7fe4cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,8 +684,8 @@ def test_url_package(runner, line, dependency, generate_hashes):
["-n", "--rebuild", "--no-build-isolation"]
+ (["--generate-hashes"] if generate_hashes else []),
)
assert out.exit_code == 0
assert dependency in out.stderr
assert out.exit_code == 0


@pytest.mark.parametrize(
Expand Down Expand Up @@ -787,13 +787,13 @@ def test_direct_reference_with_extras(runner):
"pip-tools[testing,coverage] @ git+https://github.com/jazzband/[email protected]"
)
out = runner.invoke(cli, ["-n", "--rebuild", "--no-build-isolation"])
assert out.exit_code == 0
assert (
"pip-tools[coverage,testing] @ git+https://github.com/jazzband/[email protected]"
in out.stderr
)
assert "pytest==" in out.stderr
assert "pytest-cov==" in out.stderr
assert out.exit_code == 0


def test_input_file_without_extension(pip_conf, runner):
Expand Down

0 comments on commit 7fe4cda

Please sign in to comment.