mirror of https://github.com/pyodide/pyodide.git
CI Disable multiprocessing for test-packages-firefox (#1514)
This commit is contained in:
parent
fc485efb8a
commit
b60ce85213
|
@ -165,7 +165,7 @@ jobs:
|
|||
- run:
|
||||
name: test
|
||||
command: |
|
||||
tools/pytest_wrapper.py packages/test* packages/*/test* -v -k firefox -n 2
|
||||
tools/pytest_wrapper.py packages/test* packages/*/test* -v -k firefox
|
||||
|
||||
test-packages-chrome:
|
||||
<<: *defaults
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import pytest
|
||||
from pyodide_build.testing import run_in_pyodide
|
||||
|
||||
|
||||
@pytest.mark.xfail
|
||||
@run_in_pyodide(packages=["pillow"])
|
||||
@run_in_pyodide(
|
||||
packages=["pillow"], xfail_browsers={"firefox": "timeout", "chrome": ""}
|
||||
)
|
||||
def test_pillow():
|
||||
from PIL import Image, ImageDraw, ImageOps
|
||||
import io
|
||||
|
|
Loading…
Reference in New Issue