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
1 changed files with 4 additions and 4 deletions

View File

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