Skip to content

Commit ab7da93

Browse files
committed
skip test_signal_failure on osx
Hangs. Ref: https://travis-ci.org/pypy/pyrepl/jobs/573154571#L146
1 parent 6c350b3 commit ab7da93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

testing/test_bugs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1818
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1919

20+
import sys
21+
2022
from pyrepl.historical_reader import HistoricalReader
2123
from .infrastructure import EA, TestReader, read_spec
2224

@@ -46,6 +48,7 @@ def test_cmd_instantiation_crash():
4648
read_spec(spec, HistoricalTestReader)
4749

4850

51+
@pytest.mark.skipif(sys.platform == "osx", reason="hangs on osx")
4952
def test_signal_failure(monkeypatch):
5053
import os
5154
import pty

0 commit comments

Comments
 (0)