Skip to content
Snippets Groups Projects
Commit 1b180cf1 authored by Tin Kei Cheng's avatar Tin Kei Cheng :speech_balloon:
Browse files

Test coverage bug.

parent 5f019d06
Branches
Tags
No related merge requests found
Pipeline #122071 passed
......@@ -8,6 +8,9 @@ omit =
# Don't care about STRUPHY code.
*/hylife/*
# Omit weird inclusion of numba-generated code.
*/__numba_array_expr_synthetic_module_/*
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
......@@ -31,4 +34,4 @@ exclude_lines =
import
# Ignore spontaneous `No source for code` errors:
ignore_errors = True
# ignore_errors = True
......@@ -84,7 +84,4 @@ class vtkWriter():
writer.SetFileName(filepath)
success = writer.Write()
if success == 1:
return True
else:
return False
return success == 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment