-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anyone else seeing this test failure from time to time? #2580
Comments
Basically, most of the time Me thinks something is wrong with |
Hmmmm. This seems baaad. (Pdb++) f = files_before['venv/lib/python2.7/site-packages/pip-6.1.0.dev0-py2.7.egg/pip/_vendor/requests/packages/urllib3/packages/six.py']
(Pdb++) f.path
u'venv/lib/python2.7/site-packages/pip-6.1.0.dev0-py2.7.egg/pip/operations/__init__.py' |
Is that test even right? # Test install and upgrade of single-module package
result = script.pip('install', '-t', target_dir, 'six')
assert Path('scratch') / 'target' / 'six.py' in result.files_created, (
str(result)
)
result = script.pip('install', '-t', target_dir, '--upgrade', 'six')
assert Path('scratch') / 'target' / 'six.py' in result.files_updated, (
str(result)
) Why is it expected that |
Oh maybe it depends on the |
Just did some pdb and I think it's the (Pdb++) self.mtime, other.mtime
(1426789239.0, 1426789240.0) |
The test passes when the
and fails when the
|
#2583 should fix this issue, because I made it install |
#2583 updated to no longer use |
and also fix intermittent failures reported in pypa#2580
Fixed by #2583 |
I periodically get this test failure and I don't know yet whether it's due to a misconfiguration on my system (though ideally tests should be isolated from that?) or a general problem in pip or the test suite.
Anyone else seeing this?
The text was updated successfully, but these errors were encountered: