summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-10-01 10:35:42 +0200
committerStefan Behnel <stefan_ml@behnel.de>2017-10-01 10:35:42 +0200
commitdfa4ba967c9d1e234b6524a0837b5f94095f075c (patch)
treea652669d1f955c479071c4cf2ce943e16c553d50
parentd15ceed31f0743c5aeb54755f379c20a64562d4c (diff)
downloadcython-dfa4ba967c9d1e234b6524a0837b5f94095f075c.tar.gz
Skip Jupyter PGO test on Windows - not currently supported.
-rw-r--r--Cython/Build/Tests/TestIpythonMagic.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cython/Build/Tests/TestIpythonMagic.py b/Cython/Build/Tests/TestIpythonMagic.py
index 2c64072c3..7ece9d58b 100644
--- a/Cython/Build/Tests/TestIpythonMagic.py
+++ b/Cython/Build/Tests/TestIpythonMagic.py
@@ -125,6 +125,7 @@ class TestIPythonMagic(CythonTest):
self.assertEqual(ip.user_ns['g'], 2 // 10)
self.assertEqual(ip.user_ns['h'], 2 // 10)
+ @skip_win32('Skip on Windows')
def test_cython3_pgo(self):
# The Cython cell defines the functions f() and call().
ip.run_cell_magic('cython', '-3 --pgo', pgo_cython3_code)