Closed mdpiper closed 4 years ago
The test_find_metadata test in test_setup.py is failing on Windows because os.path.abspath returns a lowercase drive letter, "c:" which fails when compared to uppercase "C:".
test_find_metadata
os.path.abspath
@mcflugen suggests fixing this with pathlib.
Interestingly, the suspect test didn't fail in #96. Why?
The
test_find_metadata
test in test_setup.py is failing on Windows becauseos.path.abspath
returns a lowercase drive letter, "c:" which fails when compared to uppercase "C:".