From: Debian Science Team Date: Tue, 29 May 2018 13:50:59 +0000 (+0100) Subject: mark_tests_working_on_intel_armhf X-Git-Tag: archive/raspbian/0.22.0-7+rpi1^2~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=012032eaef493e31ef2dc806c057ea2a7d892931;p=pandas.git mark_tests_working_on_intel_armhf Gbp-Pq: Name mark_tests_working_on_intel_armhf.patch --- diff --git a/pandas/tests/io/test_pytables.py b/pandas/tests/io/test_pytables.py index a7cc6b71..8dc8ba37 100644 --- a/pandas/tests/io/test_pytables.py +++ b/pandas/tests/io/test_pytables.py @@ -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)) diff --git a/pandas/tests/io/test_stata.py b/pandas/tests/io/test_stata.py index 4bfc797b..53c76954 100644 --- a/pandas/tests/io/test_stata.py +++ b/pandas/tests/io/test_stata.py @@ -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),