(self)
| 2495 | |
| 2496 | @pytest.mark.slow |
| 2497 | def test_facetgrid_polar(self) -> None: |
| 2498 | # test if polar projection in FacetGrid does not raise an exception |
| 2499 | self.darray.plot.pcolormesh( |
| 2500 | col="z", subplot_kws=dict(projection="polar"), sharex=False, sharey=False |
| 2501 | ) |
| 2502 | |
| 2503 | @pytest.mark.slow |
| 2504 | def test_units_appear_somewhere(self) -> None: |
nothing calls this directly
no test coverage detected