From 2287b38ebe3a0075b60f5e7e56797a67c2906e7f 2012-06-11 19:44:38 From: Fernando Perez Date: 2012-06-11 19:44:38 Subject: [PATCH] Merge pull request #1911 from minrk/skipreload Temporarily skip autoreload tests, as they were breaking Cython tests. #1912 was created to track the issue that they need to be re-enabled, but isolated to their own group. --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 829f797..2c5070a 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -236,6 +236,11 @@ def make_exclude(): exclusions.append(ipjoin('core', 'history')) if not have['wx']: exclusions.append(ipjoin('lib', 'inputhookwx')) + + # FIXME: temporarily disable autoreload tests, as they can produce + # spurious failures in subsequent tests (cythonmagic). + exclusions.append(ipjoin('extensions', 'autoreload')) + exclusions.append(ipjoin('extensions', 'tests', 'test_autoreload')) # We do this unconditionally, so that the test suite doesn't import # gtk, changing the default encoding and masking some unicode bugs.