Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38fe5fc

Browse files
committedNov 13, 2019
suppress proc related failures on pypy
Signed-off-by: Bernat Gabor <[email protected]>
1 parent 1c0fedb commit 38fe5fc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎tests/integration/test_parallel_interrupt.py

+2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
from flaky import flaky
1010
from pathlib2 import Path
1111

12+
from tox.constants import INFO
1213
from tox.util.main import MAIN_FILE
1314

1415

1516
@flaky(max_runs=3)
17+
@pytest.mark.skipif(INFO.IS_PYPY, reason="TODO: process numbers work differently on pypy")
1618
@pytest.mark.skipif(
1719
"sys.platform == 'win32'", reason="triggering SIGINT reliably on Windows is hard"
1820
)

‎tests/integration/test_provision_int.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import pytest
77
from pathlib2 import Path
88

9+
from tox.constants import INFO
910
from tox.util.main import MAIN_FILE
1011

1112

@@ -63,6 +64,7 @@ def test_provision_from_pyvenv(initproj, cmd, monkeypatch):
6364
assert ".tox/.tox/bin/python -m virtualenv" in result.out
6465

6566

67+
@pytest.mark.skipif(INFO.IS_PYPY, reason="TODO: process numbers work differently on pypy")
6668
@pytest.mark.skipif(
6769
"sys.platform == 'win32'", reason="triggering SIGINT reliably on Windows is hard"
6870
)

0 commit comments

Comments
 (0)
Please sign in to comment.