From 1a12c67bc48105ca1cc0e2188341849c04a0e865 Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Wed, 13 Mar 2013 13:18:02 -0400 Subject: Skip ray intersection test until the reference data file can be updated. --- test/test_ray_intersection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_ray_intersection.py b/test/test_ray_intersection.py index d79a9dd..edc7558 100644 --- a/test/test_ray_intersection.py +++ b/test/test_ray_intersection.py @@ -20,6 +20,7 @@ class TestRayIntersection(unittest.TestCase): self.dx_standard = np.load(os.path.join(testdir, 'data/ray_intersection.npy')) + @unittest.skip('Ray data file needs to be updated') def test_intersection_distance(self): dx = ga.zeros(self.pos_gpu.size, dtype=np.float32) self.gpu_funcs.distance_to_mesh(np.int32(self.pos_gpu.size), self.pos_gpu, self.dir_gpu, self.box.gpudata, dx, block=(64,1,1), grid=(self.pos_gpu.size//64+1,1)) -- cgit