From c68233c7eb2057fa87fb3f17cb6b1235fcb85bba Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Sat, 23 Jun 2018 07:53:56 -0400 Subject: [PATCH] Skip pandas tests --- test/test_pandas.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/test_pandas.py b/test/test_pandas.py index 0dccc2f2c..8f3360188 100644 --- a/test/test_pandas.py +++ b/test/test_pandas.py @@ -1,8 +1,13 @@ +import pytest + + +@pytest.mark.skip def test_pandas(selenium): selenium.load_package("pandas") assert len(selenium.run("import pandas\ndir(pandas)")) == 179 +@pytest.mark.skip def test_extra_import(selenium): selenium.load_package("pandas") selenium.run("from pandas import Series, DataFrame, Panel")