From 14493423c27461ac640aeb66ebddaf8d41536211 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 20 Nov 2019 06:53:35 -0600 Subject: [PATCH 1/2] xfail clipboard for now --- pandas/tests/io/test_clipboard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/tests/io/test_clipboard.py b/pandas/tests/io/test_clipboard.py index 4559ba264d8b7..9bace7d03e7a1 100644 --- a/pandas/tests/io/test_clipboard.py +++ b/pandas/tests/io/test_clipboard.py @@ -258,6 +258,7 @@ def test_round_trip_valid_encodings(self, enc, df): @pytest.mark.clipboard @pytest.mark.skipif(not _DEPS_INSTALLED, reason="clipboard primitives not installed") @pytest.mark.parametrize("data", ["\U0001f44d...", "Ωœ∑´...", "abcd..."]) +@pytest.mark.xfail(reason="flaky in CI", strict="False") def test_raw_roundtrip(data): # PR #25040 wide unicode wasn't copied correctly on PY3 on windows clipboard_set(data) From ea815819f7f5f96a5812ee2a884ae5b0547b94f7 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 20 Nov 2019 06:54:20 -0600 Subject: [PATCH 2/2] bool --- pandas/tests/io/test_clipboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/io/test_clipboard.py b/pandas/tests/io/test_clipboard.py index 9bace7d03e7a1..666dfd245acaa 100644 --- a/pandas/tests/io/test_clipboard.py +++ b/pandas/tests/io/test_clipboard.py @@ -258,7 +258,7 @@ def test_round_trip_valid_encodings(self, enc, df): @pytest.mark.clipboard @pytest.mark.skipif(not _DEPS_INSTALLED, reason="clipboard primitives not installed") @pytest.mark.parametrize("data", ["\U0001f44d...", "Ωœ∑´...", "abcd..."]) -@pytest.mark.xfail(reason="flaky in CI", strict="False") +@pytest.mark.xfail(reason="flaky in CI", strict=False) def test_raw_roundtrip(data): # PR #25040 wide unicode wasn't copied correctly on PY3 on windows clipboard_set(data)