-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
REF: rearrange test_to_latex.py #36714
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
Conversation
can you just confirm that before & after test counts are the same for latex. |
"Added" tests:
"Deleted" tests:
One extra test was added: |
def test_to_latex_column_format(self, float_frame): | ||
def test_to_latex_column_format_just_works(self, float_frame): | ||
# GH Bug #9402 | ||
float_frame.to_latex(column_format="lcr") | ||
|
||
def test_to_latex_column_format(self): | ||
df = DataFrame({"a": [1, 2], "b": ["b1", "b2"]}) |
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.
This is where I extracted tests _just_works
.
thanks @ivanovmg |
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff
Rearranged tests in
test_to_latex.py
to the corresponding classes.Sorry for the messy diffs.
All I did (except to small commits cd92db9 and 2b66e2f) was rearrangement of the tests.