CI Disable multiprocessing for test-packages-firefox (#1514)

This commit is contained in:
Roman Yurchak 2021-04-21 13:27:34 +02:00 committed by GitHub
parent fc485efb8a
commit b60ce85213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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