##// END OF EJS Templates
fix failing tests without X in IPython.lib...
Paul Ivanov -
Show More
@@ -66,6 +66,7 b' class RunnerTestCase(unittest.TestCase):'
66 self.assertTrue(mismatch==0,'Number of mismatched lines: %s' %
66 self.assertTrue(mismatch==0,'Number of mismatched lines: %s' %
67 mismatch)
67 mismatch)
68
68
69 @decorators.skip_if_no_x11
69 @decorators.skipif_not_matplotlib
70 @decorators.skipif_not_matplotlib
70 @decorators.skipif(pylab_not_importable, "Likely a run without X.")
71 @decorators.skipif(pylab_not_importable, "Likely a run without X.")
71 def test_pylab_import_all_enabled(self):
72 def test_pylab_import_all_enabled(self):
@@ -92,6 +93,7 b' Out\\[6\\]: True'
92 runner = irunner.IPythonRunner(out=self.out)
93 runner = irunner.IPythonRunner(out=self.out)
93 self._test_runner(runner,source,output)
94 self._test_runner(runner,source,output)
94
95
96 @decorators.skip_if_no_x11
95 @decorators.skipif_not_matplotlib
97 @decorators.skipif_not_matplotlib
96 @decorators.skipif(pylab_not_importable, "Likely a run without X.")
98 @decorators.skipif(pylab_not_importable, "Likely a run without X.")
97 def test_pylab_import_all_disabled(self):
99 def test_pylab_import_all_disabled(self):
General Comments 0
You need to be logged in to leave comments. Login now