Skip to content

Commit

Permalink
coverage cant be installed if the python interpreter was compiled wit…
Browse files Browse the repository at this point in the history
…h Visual Studio - changed package so nobody cares about the interpreter
  • Loading branch information
hltbra committed Mar 15, 2011
1 parent 4e6428c commit cb0d835
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ def test_multiple_requirements_files():
def test_respect_order_in_requirements_file():
env = reset_env()
write_file('frameworks-req.txt', textwrap.dedent("""\
coverage
bidict
ordereddict
mock
"""))
result = run_pip('install', '-r', env.scratch_path / 'frameworks-req.txt')
downloaded = [line for line in result.stdout.split('\n')
if 'Downloading/unpacking' in line]

assert 'coverage' in downloaded[0], 'First download should ' \
'be "coverage" but was "%s"' % downloaded[0]
assert 'bidict' in downloaded[0], 'First download should ' \
'be "bidict" but was "%s"' % downloaded[0]
assert 'ordereddict' in downloaded[1], 'Second download should ' \
'be "ordereddict" but was "%s"' % downloaded[1]
assert 'mock' in downloaded[2], 'Third download should ' \
Expand Down

0 comments on commit cb0d835

Please sign in to comment.