-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
TST: de-xfail some pyarrow tests #55918
Conversation
def test_dtype_with_converters(all_parsers): | ||
parser = all_parsers | ||
data = """a,b | ||
1.1,2.2 | ||
1.2,2.3""" | ||
|
||
if parser.engine == "pyarrow": | ||
msg = "The 'converters' option is not supported with the 'pyarrow' engine" | ||
with pytest.raises(ValueError, match=msg): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A NotImplementedError
would have been more ideal, but I guess NBD.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i guess i think of NotImplementedError as suggesting it is something we can do something about as opposed to something that isnt implemented upstream
Thanks @jbrockmendel |
Test that we are giving useful exception messages, also these execute more quickly than xfails.