(shell_pylab_fixture)
| 267 | |
| 268 | |
| 269 | def test_qt_gtk(shell_pylab_fixture): |
| 270 | s = shell_pylab_fixture |
| 271 | gui, backend = s.enable_matplotlib("qt") |
| 272 | assert gui == "qt" |
| 273 | assert s.pylab_gui_select == "qt" |
| 274 | |
| 275 | gui, backend = s.enable_matplotlib("gtk3") |
| 276 | assert gui == "qt" |
| 277 | assert s.pylab_gui_select == "qt" |
| 278 | |
| 279 | |
| 280 | @dec.skipif(not pt._matplotlib_manages_backends()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…