Index: python-meshio/tests/test_vtk.py
===================================================================
--- python-meshio.orig/tests/test_vtk.py	2021-10-07 17:02:20.448031210 +0200
+++ python-meshio/tests/test_vtk.py	2021-10-07 17:02:20.444031187 +0200
@@ -3,6 +3,7 @@
 
 import numpy as np
 import pytest
+import platform
 
 import meshio
 
@@ -71,7 +72,11 @@
     filename = this_dir / "meshes" / "vtk" / filename
 
     mesh = meshio.read(filename)
-    tol = 1.0e-2
+    if platform.architecture()[0].startswith('32'):
+        # tolerance is too tight for i386, so relax a little for 32 bit systems
+        tol = 3.0e-2
+    else:
+        tol = 1.0e-2
     s = np.sum(mesh.points)
     assert abs(s - ref_sum) < tol * ref_sum
     assert mesh.cells[0].type == "triangle"
