-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
TST/REF: collect tests by method #37403
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7a51555
TST/REF: collect tests by method
jbrockmendel f95ea07
TST/REF: collect tests by method
jbrockmendel 193e75b
TST/REF: collect tests by method
jbrockmendel e872b72
Merge branch 'master' of https://github.com/pandas-dev/pandas into ts…
jbrockmendel 99de1f0
lint fixup
jbrockmendel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
import numpy as np | ||
import pytest | ||
|
||
from pandas.errors import PerformanceWarning | ||
|
||
import pandas as pd | ||
from pandas import Categorical, DataFrame, NaT, Timestamp, date_range | ||
import pandas._testing as tm | ||
|
@@ -711,3 +713,90 @@ def sorter(key): | |
) | ||
|
||
tm.assert_frame_equal(result, expected) | ||
|
||
|
||
@pytest.fixture | ||
def df_none(): | ||
return DataFrame( | ||
{ | ||
"outer": ["a", "a", "a", "b", "b", "b"], | ||
"inner": [1, 2, 2, 2, 1, 1], | ||
"A": np.arange(6, 0, -1), | ||
("B", 5): ["one", "one", "two", "two", "one", "one"], | ||
} | ||
) | ||
|
||
|
||
@pytest.fixture(params=[["outer"], ["outer", "inner"]]) | ||
def df_idx(request, df_none): | ||
levels = request.param | ||
return df_none.set_index(levels) | ||
|
||
|
||
@pytest.fixture( | ||
params=[ | ||
"inner", # index level | ||
["outer"], # list of index level | ||
"A", # column | ||
[("B", 5)], # list of column | ||
["inner", "outer"], # two index levels | ||
[("B", 5), "outer"], # index level and column | ||
["A", ("B", 5)], # Two columns | ||
["inner", "outer"], # two index levels and column | ||
] | ||
) | ||
def sort_names(request): | ||
return request.param | ||
|
||
|
||
@pytest.fixture(params=[True, False]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could be a top-level fixture |
||
def ascending(request): | ||
return request.param | ||
|
||
|
||
class TestSortValuesLevelAsStr: | ||
def test_sort_index_level_and_column_label( | ||
self, df_none, df_idx, sort_names, ascending | ||
): | ||
# GH#14353 | ||
|
||
# Get index levels from df_idx | ||
levels = df_idx.index.names | ||
|
||
# Compute expected by sorting on columns and the setting index | ||
expected = df_none.sort_values( | ||
by=sort_names, ascending=ascending, axis=0 | ||
).set_index(levels) | ||
|
||
# Compute result sorting on mix on columns and index levels | ||
result = df_idx.sort_values(by=sort_names, ascending=ascending, axis=0) | ||
|
||
tm.assert_frame_equal(result, expected) | ||
|
||
def test_sort_column_level_and_index_label( | ||
self, df_none, df_idx, sort_names, ascending | ||
): | ||
# GH#14353 | ||
|
||
# Get levels from df_idx | ||
levels = df_idx.index.names | ||
|
||
# Compute expected by sorting on axis=0, setting index levels, and then | ||
# transposing. For some cases this will result in a frame with | ||
# multiple column levels | ||
expected = ( | ||
df_none.sort_values(by=sort_names, ascending=ascending, axis=0) | ||
.set_index(levels) | ||
.T | ||
) | ||
|
||
# Compute result by transposing and sorting on axis=1. | ||
result = df_idx.T.sort_values(by=sort_names, ascending=ascending, axis=1) | ||
|
||
if len(levels) > 1: | ||
# Accessing multi-level columns that are not lexsorted raises a | ||
# performance warning | ||
with tm.assert_produces_warning(PerformanceWarning, check_stacklevel=False): | ||
tm.assert_frame_equal(result, expected) | ||
else: | ||
tm.assert_frame_equal(result, expected) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
can you split this test up