From a56fefc764f8e9503b2fc0d73b280e2cda807d67 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Fri, 30 Oct 2020 14:42:22 +0530 Subject: [PATCH] Add debugging information to CI --- tests/functional/test_install_reqs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/functional/test_install_reqs.py b/tests/functional/test_install_reqs.py index 99a317932..6b57303ea 100644 --- a/tests/functional/test_install_reqs.py +++ b/tests/functional/test_install_reqs.py @@ -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