Skip to content

Commit

Permalink
TST: explicitly skip a newly generated test
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Oct 23, 2022
1 parent 73acadb commit 59ed60e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions yt/geometry/coordinates/tests/test_axial_pixelization.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@

def test_axial_pixelization():
for geom in sorted(_geom_transforms):
if geom == "spectral_cube":
# skip this case as it was added much later and we don't want to keep
# adding yield-based tests during the nose->pytest migration
continue
ds = fake_amr_ds(geometry=geom)
yield AxialPixelizationTest(ds)

0 comments on commit 59ed60e

Please sign in to comment.