switch from submodule to cloning arrow, travis fixes & Robert's comments

This commit is contained in:
Philipp Moritz
2016-11-19 17:38:36 -08:00
parent 05e0226047
commit d64f69f215
17 changed files with 25 additions and 324 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class SerializationTests(unittest.TestCase):
self.roundTripTest([{"hello": [1, 2, 3]}])
self.roundTripTest([{"hello": [1, [2, 3]]}])
self.roundTripTest([{"hello": (None, 2, [3, 4])}])
self.roundTripTest([{"hello": (None, 2, [3, 4], np.ndarray([1.0, 2.0, 3.0]))}])
self.roundTripTest([{"hello": (None, 2, [3, 4], np.array([1.0, 2.0, 3.0]))}])
def numpyTest(self, t):
a = np.random.randint(0, 10, size=(100, 100)).astype(t)