-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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: clean old sql tests #42835
TST: clean old sql tests #42835
Conversation
@pytest.mark.single | ||
@pytest.mark.db | ||
@pytest.mark.skip( | ||
reason="gh-13611: there is no support for MySQL if SQLAlchemy is not installed" |
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.
Just curious, is is not possible for us to test MySQL with these test or are these covered in different tests?
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.
These are covered in different tests using sqlalchemy. My guess is many years ago pandas's SQL functions were implemented directly on top of SQL drivers like pymysql. And after refactoring using sqlalchemy, those old tests were skipped but not removed for some reason.
remove skipped mysql tests, simplify old sqlite tests
a small step towards #40686