We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0db44e commit 75af797Copy full SHA for 75af797
tests/test_vcs_backends.py
@@ -139,6 +139,6 @@ def test_git_works_with_editable_non_origin_repo():
139
140
# 'freeze'ing this should not fall over, but should result in stderr output warning
141
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
+ assert "Error when trying to get requirement" in result.stderr, result.stderr
+ assert "Could not determine repository location" in result.stdout, result.stdout
+ assert "version-pkg==0.1" in result.stdout, result.stdout
0 commit comments