Adrien is on this !
For the moment on 32bit architecture the test is skipped !
from numpy import *
pass
+from platform import architecture
from sys import getrefcount
import os,gc,weakref,unittest
class MEDCouplingNumPyTest(unittest.TestCase):
- @unittest.skipUnless(MEDCouplingHasNumPyBindings(),"requires numpy")
+ @unittest.skipUnless(MEDCouplingHasNumPyBindings() and architecture()[0]=="64bit","requires numpy")
def test1(self):
sz=20
a=array(0,dtype=int32)