Skip to content

Commit

Permalink
disable JIT exceptions test on Windows (not supported; only compiled …
Browse files Browse the repository at this point in the history
…ones)
  • Loading branch information
wlav committed Nov 14, 2021
1 parent 7c7c18e commit 7767d66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_doc_features.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import py, os, sys
from pytest import raises
from .support import setup_make, ispypy, IS_MAC_ARM
from .support import setup_make, ispypy, IS_WINDOWS, IS_MAC_ARM

currpath = py.path.local(__file__).dirpath()
test_dct = str(currpath.join("doc_helperDict"))
Expand Down Expand Up @@ -1226,8 +1226,8 @@ def test_autocast_and_identiy(self):
def test_exceptions(self):
"""Exceptions example"""

if IS_MAC_ARM:
py.test.skip("JIT exceptions not supported on Mac ARM")
if IS_MAC_ARM or IS_WINDOWS:
py.test.skip("JIT exceptions not supported on this platform")

import cppyy
import cppyy.gbl.talk_examples as CC
Expand Down

0 comments on commit 7767d66

Please sign in to comment.