Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
742a268
Activated test for metadata of merge operation.
aijams Sep 4, 2025
a12bdbd
Fixed error in test for merge result flags.
aijams Sep 4, 2025
d22b90a
Tested that merge collects metadata from only its left argument.
aijams Sep 4, 2025
41b3571
Added test to check whether merge_asof correctly sets the allow dupli…
aijams Sep 4, 2025
58b3c2a
Added bug fix description to documentation.
aijams Sep 5, 2025
11ebac8
Added test to check metadata handling for pandas.merge.
aijams Sep 9, 2025
24f4c8d
Added identifiers to test cases for pandas.merge.
aijams Sep 9, 2025
4381364
Modified tests for __finalize__ to respect documented merge behavior.
aijams Sep 11, 2025
bba9a13
Added type annotations to test method parameters.
aijams Sep 17, 2025
da1b0f4
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Sep 17, 2025
0d52fff
Fixed type issue for test_finalize. Added a little documentation.
aijams Sep 18, 2025
9c7b9ed
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Sep 18, 2025
9f68134
Ran ruff formatter to correct some issues.
aijams Sep 18, 2025
ff1aba5
Fixed some cosmetic issues with pre-commit hooks.
aijams Sep 19, 2025
8ece859
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Sep 19, 2025
6d216fe
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Oct 6, 2025
9b51d3e
Removed docstrings on tests.
aijams Oct 6, 2025
f2abf1f
Resolved several issues in test_finalize.
aijams Oct 7, 2025
eca7671
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Oct 7, 2025
dddc031
Fixed a couple nitpicks.
aijams Oct 7, 2025
7304a48
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Oct 8, 2025
15adcd7
Reformatted argument lists as required by ruff.
aijams Oct 8, 2025
1a8602d
Added note and removed potentially confusing docs from __fianlize__.
aijams Oct 8, 2025
c5f31ac
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Oct 9, 2025
d9b52f0
Removed trailing commas.
aijams Oct 9, 2025
47800f4
Merge remote-tracking branch 'upstream/main' into aijams-dataframe-me…
aijams Oct 14, 2025
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
Prev Previous commit
Next Next commit
Removed trailing commas.
  • Loading branch information
aijams committed Oct 9, 2025
commit d9b52f0516a4c110b72cd54cb4becff9c51abd2d
9 changes: 3 additions & 6 deletions pandas/tests/generic/test_finalize.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,7 @@ def test_datetime_property(attr):


@pytest.mark.parametrize(
"attr",
["days", "seconds", "microseconds", "nanoseconds", "components"],
"attr", ["days", "seconds", "microseconds", "nanoseconds", "components"]
)
def test_timedelta_property(attr):
s = pd.Series(pd.timedelta_range("2000", periods=4))
Expand Down Expand Up @@ -626,8 +625,7 @@ def test_categorical_accessor(method):


@pytest.mark.parametrize(
"obj",
[pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
"obj", [pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})]
)
@pytest.mark.parametrize(
"method",
Expand All @@ -646,8 +644,7 @@ def test_groupby_finalize(obj, method):


@pytest.mark.parametrize(
"obj",
[pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
"obj", [pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})]
)
@pytest.mark.parametrize(
"method",
Expand Down
Loading