mark_tests_working_on_intel_armhf
authorDebian Science Team <debian-science-maintainers@lists.alioth.debian.org>
Tue, 29 May 2018 13:50:59 +0000 (14:50 +0100)
committerGraham Inggs <ginggs@debian.org>
Tue, 29 May 2018 13:50:59 +0000 (14:50 +0100)
Gbp-Pq: Name mark_tests_working_on_intel_armhf.patch

pandas/tests/io/test_pytables.py
pandas/tests/io/test_stata.py

index a7cc6b711802e3ed8ec134711c6e8165865d32a5..8dc8ba372151c37dd3368e61ffa53a9947d2034a 100644 (file)
@@ -1042,6 +1042,7 @@ class TestHDFStore(Base):
                 with catch_warnings(record=True):
                     check('fixed', index)
 
+    @pytest.mark.intel
     @pytest.mark.skipif(not is_platform_little_endian(),
                         reason="reason platform is not little endian")
     def test_encoding(self):
@@ -1058,6 +1059,7 @@ class TestHDFStore(Base):
             result = store.select('df', Term('columns=A', encoding='ascii'))
             tm.assert_frame_equal(result, expected)
 
+    @pytest.mark.intel
     def test_latin_encoding(self):
 
         if compat.PY2:
@@ -1248,6 +1250,7 @@ class TestHDFStore(Base):
                 reloaded_panel = read_hdf(path, 'panel_with_missing')
                 tm.assert_panel_equal(panel_with_missing, reloaded_panel)
 
+    @pytest.mark.intel
     def test_append_frame_column_oriented(self):
 
         with ensure_clean_store(self.path) as store:
@@ -4371,6 +4374,7 @@ class TestHDFStore(Base):
             with pytest.raises(NotImplementedError):
                 store.select('dfs', start=0, stop=5)
 
+    @pytest.mark.intel
     def test_select_filter_corner(self):
 
         df = DataFrame(np.random.randn(50, 100))
index 4bfc797b4cdf9360c095651204b6bb5ae59a65bb..53c7695492854cf38ad11e08c98c6388aac75b1e 100644 (file)
@@ -444,6 +444,7 @@ class TestStata(object):
             tm.assert_frame_equal(written_and_read_again.set_index('index'),
                                   formatted)
 
+    @pytest.mark.intel
     @pytest.mark.parametrize(
         'file', ['dta14_113', 'dta14_114', 'dta14_115', 'dta14_117'])
     def test_read_write_reread_dta14(self, file, parsed_114):
@@ -1127,6 +1128,7 @@ class TestStata(object):
                 tm.assert_frame_equal(from_frame, chunk, check_dtype=False)
                 pos += chunksize
 
+    @pytest.mark.intel
     def test_write_variable_labels(self):
         # GH 13631, add support for writing variable labels
         original = pd.DataFrame({'a': [1, 2, 3, 4],
@@ -1179,6 +1181,7 @@ class TestStata(object):
             with tm.ensure_clean() as path:
                 original.to_stata(path, variable_labels=variable_labels_long)
 
+    @pytest.mark.intel
     def test_default_date_conversion(self):
         # GH 12259
         dates = [dt.datetime(1999, 12, 31, 12, 12, 12, 12000),