(request)
| 32 | |
| 33 | @pytest.fixture(params=['holoviews', 'hvplot']) |
| 34 | def plotting_backend(request): |
| 35 | initial_backend = pd.options.plotting.backend |
| 36 | pd.options.plotting.backend = request.param |
| 37 | try: |
| 38 | yield request.param |
| 39 | finally: |
| 40 | pd.options.plotting.backend = initial_backend |
| 41 | |
| 42 | |
| 43 | @pytest.mark.parametrize('kind,el', no_args_mapping) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…