Closed annehaley closed 5 months ago
Attention: Patch coverage is 0%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 43.09%. Comparing base (
117dec9
) to head (cb2fcf5
). Report is 2 commits behind head on main.
Files | Patch % | Lines |
---|---|---|
pvxarray/vtk_source.py | 0.00% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
When importing pvxarray on a system that does not have
libX11-6
installed (such as CI runners), the import can fail with the following error:ImportError: libX11.so.6: cannot open shared object file: No such file or directory
. This is because we currently importfrom vtk.util.vtkAlgorithm import VTKPythonAlgorithmBase
. We should not import fromvtk
directly, as this loads all modules. To load only necessary modules, we should import fromvtkmodules
instead.