Skip to content

Commit

Permalink
reimplemented pytest.mark.skip
Browse files Browse the repository at this point in the history
  • Loading branch information
sgriffithjones committed Feb 26, 2024
1 parent 9204881 commit 4a4cb2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_bathymetric_gradient_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def mesh_plot(points, cells, plot_title=""):
pt.show()


# @pytest.mark.skip(reason="not implemented yet")
@pytest.mark.skip(reason="not implemented yet")
def test_bathymetric_gradient_function():
EPSG = 4326 # EPSG:4326 or WGS84
bbox = (-74.4, -73.4, 40.2, 41.2)
Expand Down
4 changes: 1 addition & 3 deletions tests/test_mesh_generator_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,5 @@ def edge_length(p):
min_edge_length=min_edge_length,
bbox=bbox,
)
breakp = "oint"
assert np.isclose(np.sum(simp_vol(points, cells)), 1.0, 0.01)

test_mesh_generator_rectangle()
assert np.isclose(np.sum(simp_vol(points, cells)), 1.0, 0.01)

0 comments on commit 4a4cb2f

Please sign in to comment.