We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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_info has this assert:
self.assertEqual( info['entry_path'], '.')
which causes this failure on macOS 10.15.7:
|| AssertionError: '/var/folders/nn/60mn72f90kj5f2pf9x1sx9s00000gn/T/tmp9yvxsh56' != '.' || - /var/folders/nn/60mn72f90kj5f2pf9x1sx9s00000gn/T/tmp9yvxsh56 || + .
The reason is clearer when using absolute paths:
self.assertEqual( os.path.realpath(os.path.abspath(info['entry_path'])), os.path.realpath(os.path.abspath('.')))
|| AssertionError: 'file:///private/var/folders/nn/60mn72f90kj5f2pf9x1sx9s00000gn/T/tmplwu2veti' != 'file:///var/folders/nn/60mn72f90kj5f2pf9x1sx9s00000gn/T/tmplwu2veti' || - file:///private/var/folders/nn/60mn72f90kj5f2pf9x1sx9s00000gn/T/tmplwu2veti || ? -------- || + file:///var/folders/nn/60mn72f90kj5f2pf9x1sx9s00000gn/T/tmplwu2veti
Not sure if that private folder a macos-specific thing. I'm not entirely sure what's wrong and causing different paths or how to prevent it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
test_info has this assert:
which causes this failure on macOS 10.15.7:
The reason is clearer when using absolute paths:
Not sure if that private folder a macos-specific thing. I'm not entirely sure what's wrong and causing different paths or how to prevent it.
The text was updated successfully, but these errors were encountered: