From: Robert Bradshaw Date: Thu, 29 Oct 2009 05:53:25 +0000 (-0700) Subject: Disable embedded testing for Py3 (can't run Cython). X-Git-Tag: 0.12.alpha0~8^2~24 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=91c2f9b811b5398fc5acde3b8435497d2a094de3;p=cython.git Disable embedded testing for Py3 (can't run Cython). --- diff --git a/runtests.py b/runtests.py index ce48632e..10ede0d2 100644 --- a/runtests.py +++ b/runtests.py @@ -127,7 +127,8 @@ class TestBuilder(object): continue suite.addTest( self.handle_directory(path, filename)) - if sys.platform not in ['win32']: + if sys.platform not in ['win32'] and sys.version_info[0] < 3: + # Non-Windows makefile, can't run Cython under Py3. if [1 for selector in self.selectors if selector("embedded")]: suite.addTest(unittest.makeSuite(EmbedTest)) return suite