Skip to content

Commit 77efc63

Browse files
committed
Skip test if no llvm
1 parent 93dd6c1 commit 77efc63

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

symengine/tests/test_pickling.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
from symengine import symbols, sin, sinh, Lambdify, have_numpy
1+
from symengine import symbols, sin, sinh, Lambdify, have_numpy, have_llvm
22
import pickle
33
import unittest
44

5+
@unittest.skipUnless(have_llvm, "No LLVM support")
56
@unittest.skipUnless(have_numpy, "Numpy not installed")
67
def test_llvm_double():
78
import numpy as np

0 commit comments

Comments
 (0)