Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix test.test_exposures_value_pass #697

Merged
merged 2 commits into from
Apr 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions climada/test/test_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,7 @@ def test_hazard_centroids(self):
centroids = Centroids.from_base_grid()
centroids.plot()

# sipped because of issue #693
# TODO: unskip when #693 is solved
def skip_test_exposures_value_pass(self):
def test_exposures_value_pass(self):
"""Plot exposures values."""
myexp = pd.read_excel(ENT_DEMO_TODAY)
myexp = Exposures(myexp)
Expand All @@ -122,7 +120,8 @@ def skip_test_exposures_value_pass(self):

myexp.plot_scatter()
myexp.plot_basemap()
myexp.plot_raster()
# note: not specifying raster_res makes jenkins runout of memory
myexp.plot_raster(raster_res = 0.001)
emanuel-schmid marked this conversation as resolved.
Show resolved Hide resolved

def test_impact_funcs_pass(self):
"""Plot diferent impact functions."""
Expand Down