diff --git a/.github/workflows/ciwheels.yml b/.github/workflows/ciwheels.yml index 691ae8ab..0f72dfaa 100644 --- a/.github/workflows/ciwheels.yml +++ b/.github/workflows/ciwheels.yml @@ -74,7 +74,7 @@ jobs: - uses: actions/upload-artifact@v3 with: - name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} + # name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: | ./wheelhouse/*.whl ./wheelhouse/*.tar.gz diff --git a/test/test_lazy_cage.py b/test/test_lazy_cage.py index 16fbee46..bd6e5d5f 100644 --- a/test/test_lazy_cage.py +++ b/test/test_lazy_cage.py @@ -8,9 +8,13 @@ def test_bunny(self): # Generate many examples for m in np.linspace(20,2000,10,dtype=int): # print(m) + # print("Calling lazy_cage with m = ", m) u,g = gpytoolbox.copyleft.lazy_cage(v,f,num_faces=m,max_iter=10) + # print("Finished lazy_cage with m = ", m) # u,g fully contains v,f, i.e. they don't intersect + # print("Checking if u,g fully contains v,f") b, _ = gpytoolbox.copyleft.do_meshes_intersect(v,f,u,g) + # print("Finished checking if u,g fully contains v,f") self.assertFalse(b) def test_armadillo(self): v,f = gpytoolbox.read_mesh("test/unit_tests_data/armadillo.obj") @@ -18,9 +22,13 @@ def test_armadillo(self): # Generate many examples for m in np.linspace(1000,2000,5,dtype=int): # print(m) + # print("Calling lazy_cage with m = ", m) u,g = gpytoolbox.copyleft.lazy_cage(v,f,num_faces=m,max_iter=10) + # print("Finished lazy_cage with m = ", m) # u,g fully contains v,f, i.e. they don't intersect + # print("Checking if u,g fully contains v,f") b, _ = gpytoolbox.copyleft.do_meshes_intersect(v,f,u,g) + # print("Finished checking if u,g fully contains v,f") self.assertFalse(b) if __name__ == '__main__':