Skip to content

CI: Flakey Arm Tests #44153

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

Closed
alimcmaster1 opened this issue Oct 22, 2021 · 0 comments · Fixed by #44650
Closed

CI: Flakey Arm Tests #44153

alimcmaster1 opened this issue Oct 22, 2021 · 0 comments · Fixed by #44650
Labels
ARM aarch64 architecture CI Continuous Integration Unreliable Test Unit tests that occasionally fail
Milestone

Comments

@alimcmaster1
Copy link
Member

Ref: #41740

https://app.circleci.com/pipelines/github/pandas-dev/pandas/1629/workflows/fdbd00a1-21ba-45fb-8813-c4cfd2a06305/jobs/32470

________________________ TestRename.test_rename_inplace ________________________
[gw1] linux -- Python 3.7.10 /home/circleci/miniconda3/envs/pandas-dev/bin/python

self = <pandas.tests.frame.methods.test_rename.TestRename object at 0xffff47ba8510>
float_frame = A B foo D
a3RR7rMUiG 0.656936 1.215185 0.629301 0.115558
7SCDtsxI3g -1.65....288884 -1.874402
WYIEEfxzV5 0.138755 -0.304313 0.827201 -0.329769
7WsSg25BaJ 0.632135 1.551402 1.333670 -0.128241

def test_rename_inplace(self, float_frame):
    float_frame.rename(columns={"C": "foo"})
    assert "C" in float_frame
    assert "foo" not in float_frame

    c_id = id(float_frame["C"])
    float_frame = float_frame.copy()
    return_value = float_frame.rename(columns={"C": "foo"}, inplace=True)
    assert return_value is None

    assert "C" not in float_frame
    assert "foo" in float_frame
  assert id(float_frame["foo"]) != c_id

E assert 281471885249296 != 281471885249296
E + where 281471885249296 = id(a3RR7rMUiG 0.629301\n7SCDtsxI3g -0.051768\nvptsj7jAlg 0.355503\nB3utB9zDIM 0.047273\nOxQGHHlFri 0.780563\nhyK...3\nw2htgi2mxz 0.198167\n3O7zwMIcBM 1.288884\nWYIEEfxzV5 0.827201\n7WsSg25BaJ 1.333670\nName: foo, dtype: float64)

pandas/tests/frame/methods/test_rename.py:191: AssertionError

@alimcmaster1 alimcmaster1 added Testing pandas testing functions or related to the test suite CI Continuous Integration ARM aarch64 architecture labels Oct 22, 2021
@lithomas1 lithomas1 added Unreliable Test Unit tests that occasionally fail and removed Testing pandas testing functions or related to the test suite labels Oct 27, 2021
@jreback jreback added this to the 1.4 milestone Nov 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ARM aarch64 architecture CI Continuous Integration Unreliable Test Unit tests that occasionally fail
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants