Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion core/tests/test_viz_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def test_viz_context_location():


# RMS (12.174 // 255) for Ubuntu DEV --> MPL via pypi (very small diff)
tol = 12.2 if pytest.ENV_TYPE == "dev" else 3
# -- more diff -- simplification#285
tol = 12.2 if pytest.ENV_TYPE == "dev" else 4


@image_comparison(
Expand Down
8 changes: 6 additions & 2 deletions core/tests/test_viz_h3_hex.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
import core


# (RMS 6.914)
# -- more diff -- simplification#285
@image_comparison(
baseline_images=["test_viz_h3_hex_plot_aoi.png"],
style="mpl20",
tol=7 if pytest.ENV_TYPE == "dev" else 2, # (RMS 6.914)
tol=7 if pytest.ENV_TYPE == "dev" else 3,
)
def test_viz_h3_hex_plot_aoi(grid_8_auckland):
core.viz.h3_hex.plot_aoi(grid_8_auckland, "Auckland", 8)
Expand Down Expand Up @@ -38,7 +40,9 @@ def test_viz_h3_hex_plot_analysis(manual_auckland, parenx_auckland, grid_7_auckl
core.viz.h3_hex.plot_analysis(grid, f"{var}_ratio", info=f"({_p}/{_m})")


tol = 5 if pytest.ENV_TYPE == "dev" else 3 # (RMS 4.030)
# (RMS 4.030)
# -- more diff -- simplification#285
tol = 5 if pytest.ENV_TYPE == "dev" else 4


class TestVizH3HexPlotCell:
Expand Down
Loading