mirror of https://github.com/pyodide/pyodide.git
Skip joblib pickling on chrome
This commit is contained in:
parent
53cd70c35c
commit
902e7463ae
|
@ -1,4 +1,10 @@
|
||||||
def test_joblib_numpy_pickle(selenium):
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
def test_joblib_numpy_pickle(selenium, request):
|
||||||
|
if selenium.browser == 'chrome':
|
||||||
|
request.applymarker(pytest.mark.xfail(
|
||||||
|
run=False, reason='chrome not supported'))
|
||||||
selenium.load_package(['numpy', 'joblib'])
|
selenium.load_package(['numpy', 'joblib'])
|
||||||
selenium.run("""
|
selenium.run("""
|
||||||
import joblib
|
import joblib
|
Loading…
Reference in New Issue