提交 1e77a33a 编写于 作者: P Paul Nasrat

Merge pull request #560 from pnasrat/557-fix-windows-ci

Remove unix line ending assumption.
......@@ -67,7 +67,7 @@ def test_git_with_tag_name_and_update():
'%s@0.1.2#egg=pip-test-package' %
local_checkout('git+http://github.com/pypa/pip-test-package.git'),
expect_error=True)
assert '0.1.2\n' in result.stdout
assert '0.1.2' in result.stdout
def test_git_branch_should_not_be_changed():
......@@ -92,7 +92,7 @@ def test_git_with_non_editable_unpacking():
result = run_pip('install', '--global-option=--version', local_checkout(
'git+http://github.com/pypa/pip-test-package.git@0.1.2#egg=pip-test-package'
), expect_error=True)
assert '0.1.2\n' in result.stdout
assert '0.1.2' in result.stdout
def test_git_with_editable_where_egg_contains_dev_string():
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册