Index: basix/test/test_permutations.py
===================================================================
--- basix.orig/test/test_permutations.py	2021-01-31 11:55:35.609445295 +0100
+++ basix/test/test_permutations.py	2021-02-04 22:29:13.003554871 +0100
@@ -5,6 +5,7 @@
 import basix
 import pytest
 import numpy as np
+import platform
 
 interval_elements = ["Lagrange", "Discontinuous Lagrange"]
 triangle_elements = [
@@ -190,6 +191,9 @@
     if element_name == "Crouzeix-Raviart" and order != 1:
         pytest.xfail()
 
+    if platform.architecture()[0] == "32bit" and element_name == "Nedelec 2nd kind H(curl)" and order == 5:
+        pytest.xfail()        
+
     e = basix.create_element(element_name, "tetrahedron", order)
 
     N = 4
