Skip to content

Commit 75af797

Browse files
committed
PR ci testing - add assertion messages
1 parent e0db44e commit 75af797

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_vcs_backends.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,6 @@ def test_git_works_with_editable_non_origin_repo():
139139

140140
# 'freeze'ing this should not fall over, but should result in stderr output warning
141141
result = run_pip('freeze', expect_stderr=True)
142-
assert "Error when trying to get requirement" in result.stderr
143-
assert "Could not determine repository location" in result.stdout
144-
assert "version-pkg==0.1" in result.stdout
142+
assert "Error when trying to get requirement" in result.stderr, result.stderr
143+
assert "Could not determine repository location" in result.stdout, result.stdout
144+
assert "version-pkg==0.1" in result.stdout, result.stdout

0 commit comments

Comments
 (0)