Skip to content

Commit 7788285

Browse files
Backport PR #45576: CI: Use xsel instead of xclip for numpydev (#45604)
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent e8348de commit 7788285

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/posix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
[actions-pypy-38.yaml, "not slow and not clipboard", "", "", "", "", "--max-worker-restart 0"],
3636
[actions-39.yaml, "slow", "", "", "", "", ""],
3737
[actions-39.yaml, "not slow and not clipboard", "", "", "", "", ""],
38-
[actions-310-numpydev.yaml, "not slow and not network", "xclip", "", "", "deprecate", "-W error"],
38+
[actions-310-numpydev.yaml, "not slow and not network", "xsel", "", "", "deprecate", "-W error"],
3939
[actions-310.yaml, "not slow and not clipboard", "", "", "", "", ""],
4040
[actions-310.yaml, "slow", "", "", "", "", ""],
4141
]

pandas/tests/io/test_clipboard.py

+5
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,11 @@ def test_round_trip_valid_encodings(self, enc, df):
307307
@pytest.mark.single
308308
@pytest.mark.clipboard
309309
@pytest.mark.parametrize("data", ["\U0001f44d...", "Ωœ∑´...", "abcd..."])
310+
@pytest.mark.xfail(
311+
reason="Flaky test in multi-process CI environment: GH 44584",
312+
raises=AssertionError,
313+
strict=False,
314+
)
310315
def test_raw_roundtrip(data):
311316
# PR #25040 wide unicode wasn't copied correctly on PY3 on windows
312317
clipboard_set(data)

0 commit comments

Comments
 (0)