Disable these tests if numpy isn't installed

This commit is contained in:
Davis King 2018-01-16 20:14:37 -05:00
parent 0217fb5a3b
commit a9ca83d228

View File

@ -4,7 +4,12 @@ try:
except ImportError:
import pickle
from pytest import raises
import numpy
try:
import numpy
except ImportError:
# Just skip these tests if numpy isn't installed
exit(0)
def test_matrix_empty_init():