From c7ea6735575cfa966419224b581d7461717dc75c Mon Sep 17 00:00:00 2001 From: alimcmaster1 Date: Thu, 26 Dec 2019 01:26:21 +0000 Subject: [PATCH] Update test_gbq.py Non strict xfail flakey test --- pandas/tests/io/test_gbq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/io/test_gbq.py b/pandas/tests/io/test_gbq.py index f040dc2d0a70a..b6309860d06f7 100644 --- a/pandas/tests/io/test_gbq.py +++ b/pandas/tests/io/test_gbq.py @@ -196,7 +196,7 @@ def test_roundtrip(self): ) assert result["num_rows"][0] == test_size - @pytest.mark.xfail(reason="Test breaking master") + @pytest.mark.xfail(reason="Test breaking master", strict=False) @pytest.mark.parametrize( "if_exists, expected_num_rows", [("append", 300), ("fail", 200), ("replace", 100)],