diff --git a/tests/integration/test_excludes.py b/tests/integration/test_excludes.py index d0c480f1a..da8df1c26 100644 --- a/tests/integration/test_excludes.py +++ b/tests/integration/test_excludes.py @@ -430,7 +430,7 @@ def assert_stderr_contains( # Building a Pex that requires bar should (transitively) aggressively blow up in normal # circumstances. run_pex_command( - args=list(pip_options.iter_args()) + ["-f", find_links, "--no-pypi", "foo"] + args=list(pip_options.iter_args()) + ["-f", find_links, "--no-pypi", "foo", "-vv"] ).assert_failure(expected_error_re=r".*I'm an evil package\..*", re_flags=re.DOTALL) # But an `--exclude bar` should solve this by never resolving bar at all.