##// END OF EJS Templates
Merge pull request #12617 from Carreau/skip-ipykernel
Matthias Bussonnier -
r26085:887e93ef merge
parent child Browse files
Show More
@@ -138,7 +138,9 b' def _get_inline_config():'
138 from ipykernel.pylab.config import InlineBackend
138 from ipykernel.pylab.config import InlineBackend
139 return InlineBackend.instance()
139 return InlineBackend.instance()
140
140
141 @dec.skip_without('matplotlib')
141
142 @dec.skip_without("ipykernel")
143 @dec.skip_without("matplotlib")
142 def test_set_matplotlib_close():
144 def test_set_matplotlib_close():
143 cfg = _get_inline_config()
145 cfg = _get_inline_config()
144 cfg.close_figures = False
146 cfg.close_figures = False
@@ -173,7 +175,9 b' def test_set_matplotlib_formats():'
173 else:
175 else:
174 nt.assert_not_in(Figure, f)
176 nt.assert_not_in(Figure, f)
175
177
176 @dec.skip_without('matplotlib')
178
179 @dec.skip_without("ipykernel")
180 @dec.skip_without("matplotlib")
177 def test_set_matplotlib_formats_kwargs():
181 def test_set_matplotlib_formats_kwargs():
178 from matplotlib.figure import Figure
182 from matplotlib.figure import Figure
179 ip = get_ipython()
183 ip = get_ipython()
General Comments 0
You need to be logged in to leave comments. Login now