-
-
Notifications
You must be signed in to change notification settings - Fork 436
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
On Windows, all packages are reported in lower case #89
Comments
Original comment by pablodcar (Bitbucket: pablodcar, GitHub: pablodcar) Hi Ned, I was bitten by this bug. My use case is that I run test cases in Windows (case-insensitive paths), while I aggregate and display coverage information later in a Linux box checking out sources from SVN (case-sensitive paths). I did some changes that worked for me, based in that question in Stack Overflow asked by you some time ago: http://stackoverflow.com/questions/3692261/in-python-how-can-i-get-the-correctly-cased-path-for-a-file I attach a patch, and I would like you to review these little changes to include them in a future release if possible. Thanks in advance, Pablo Carballo |
Fixed in <<changeset 31ca39cb1da5 (bb)>>. |
This is because we use os.path.normcase to canonicalize the paths for comparisons.
The text was updated successfully, but these errors were encountered: