-
Notifications
You must be signed in to change notification settings - Fork 3
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
Test Failure TestCheckAndFixLongFilename #29
Comments
@pytest.mark.skipif(os.name == 'nt' and sys.maxsize <= 2**32,
reason="OSError: symbolic link privilege not held") It makes sense that lack of symlinking privileges is not just a 32-bit thing; I guess we need a 64-bit build on Azure to catch this sort of stuff. |
I didn't know that we had a test skipping because of lack of symlinking privileges. Shouldn't the AppVeyor build have caught it? – I thought that one runs completely 64 bit everything? |
I don't think the failure happens on all Windows machines. There's probably some privilege issue with symlink on windows, so I don't think Appveyor is "missing" it, it just has a different config. If I'm correct in my assumption that there's no |
Or, if you want to be really thorough, I suppose you could check for the privilege issue/exception and xfail if it is present, otherwise run the test, or similar. |
Expected behavior
test passed
Actual behavior
test failed
Code to reproduce the behavior
Current version of MDAnalysis
python -V
)? Python 3.8.3 (Python 3.8.3 | packaged by conda-forge | (default, Jun 1 2020, 16:59:10) [MSC v.1916 64 bit (AMD64)] on win32)The text was updated successfully, but these errors were encountered: