Skip to content

Commit

Permalink
Ignore viz model for testing coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
hkjeldsberg committed Oct 24, 2023
1 parent 28f1ee1 commit f1b8d61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vampy/automatedPreprocessing/visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version = vtk.vtkVersion().GetVTKMajorVersion()


def visualize_model(network_elements, probe_points, output_surface, mean_inflow_rate):
def visualize_model(network_elements, probe_points, output_surface, mean_inflow_rate): # pragma: no cover
"""
Visualize surface model / mesh with distributed flow rates at each inlet/outlet
in an interactive VTK window.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pre_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_mesh_model_with_one_inlet():
smoothing_method="taubin",
refine_region=False,
coarsening_factor=1.3,
visualize=False,
visualize=True,
compress_mesh=False,
outlet_flow_extension_length=1,
inlet_flow_extension_length=1
Expand Down

0 comments on commit f1b8d61

Please sign in to comment.