Skip two tests which fail when ran in full battery during pkg build
authorYaroslav Halchenko <debian@onerussian.com>
Sun, 10 Nov 2019 16:35:41 +0000 (16:35 +0000)
committerRebecca N. Palmer <rebecca_palmer@zoho.com>
Sun, 10 Nov 2019 16:35:41 +0000 (16:35 +0000)
Origin: (Neuro)Debian
Bug: https://github.com/pandas-dev/pandas/issues/19774
Last-Update: 2018-02-20

Gbp-Pq: Name deb_skip_difffailingtests

pandas/tests/io/formats/test_to_csv.py
pandas/tests/io/pytables/test_pytables.py

index ee236a8253b01affef84631eeaf5b795b5ba63f7..30cb822e7b9e91969e1d5494fe2660f5ec53b4a5 100644 (file)
@@ -42,6 +42,7 @@ class TestToCSV:
             with open(path, "r") as f:
                 assert f.read() == expected2
 
+    @pytest.mark.skipif(True, reason="see https://github.com/pandas-dev/pandas/issues/19774")
     def test_to_csv_defualt_encoding(self):
         # GH17097
         df = DataFrame({"col": ["AAAAA", "ÄÄÄÄÄ", "ßßßßß", "聞聞聞聞聞"]})
index d3f7ddf7f39ad50c5e36e9dd7463f1d070d016a8..aa434a7fae93119798348aaceda21eedbac70491 100644 (file)
@@ -4629,6 +4629,7 @@ class TestHDFStore(Base):
             df_loaded = read_hdf(path, "df", columns=cols2load)  # noqa
             assert cols2load_original == cols2load
 
+    @pytest.mark.xfail(reason="see https://github.com/pandas-dev/pandas/issues/19774")
     @ignore_natural_naming_warning
     def test_to_hdf_with_object_column_names(self):
         # GH9057