1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Add debugging information to CI

This commit is contained in:
Pradyun Gedam 2020-10-30 14:42:22 +05:30
parent 16c3205184
commit a56fefc764
No known key found for this signature in database
GPG key ID: FF99710C4332258E

View file

@ -585,18 +585,18 @@ def test_install_distribution_union_with_versions(
assert ( assert (
"Cannot install localextras[bar] 0.0.1 and localextras[baz] 0.0.2 " "Cannot install localextras[bar] 0.0.1 and localextras[baz] 0.0.2 "
"because these package versions have conflicting dependencies." "because these package versions have conflicting dependencies."
) in result.stderr ) in result.stderr, str(result)
assert ( assert (
"localextras[bar] 0.0.1 depends on localextras 0.0.1" "localextras[bar] 0.0.1 depends on localextras 0.0.1"
) in result.stdout ) in result.stdout, str(result)
assert ( assert (
"localextras[baz] 0.0.2 depends on localextras 0.0.2" "localextras[baz] 0.0.2 depends on localextras 0.0.2"
) in result.stdout ) in result.stdout, str(result)
else: else:
assert ( assert (
"Successfully installed LocalExtras-0.0.1 simple-3.0 " "Successfully installed LocalExtras-0.0.1 simple-3.0 "
"singlemodule-0.0.1" "singlemodule-0.0.1"
) in result.stdout ) in result.stdout, str(result)
@pytest.mark.xfail @pytest.mark.xfail