mirror of https://github.com/pyodide/pyodide.git
Skip pandas tests
This commit is contained in:
parent
d837883fbb
commit
c68233c7eb
|
@ -1,8 +1,13 @@
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip
|
||||||
def test_pandas(selenium):
|
def test_pandas(selenium):
|
||||||
selenium.load_package("pandas")
|
selenium.load_package("pandas")
|
||||||
assert len(selenium.run("import pandas\ndir(pandas)")) == 179
|
assert len(selenium.run("import pandas\ndir(pandas)")) == 179
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip
|
||||||
def test_extra_import(selenium):
|
def test_extra_import(selenium):
|
||||||
selenium.load_package("pandas")
|
selenium.load_package("pandas")
|
||||||
selenium.run("from pandas import Series, DataFrame, Panel")
|
selenium.run("from pandas import Series, DataFrame, Panel")
|
||||||
|
|
Loading…
Reference in New Issue