Deep3DFaceReconstruction icon indicating copy to clipboard operation
Deep3DFaceReconstruction copied to clipboard

Bazel test failed

Open lshil00 opened this issue 3 years ago • 3 comments

Hi, I'm trying to run the code with your instruction, but get stuck with the "bazel test ...".Could you please help me with this? Really appreciate that. 2021-12-26 20-18-14

lshil00 avatar Dec 26 '21 12:12 lshil00

It looks like https://github.com/google/googletest/archive/master.zip doesn't exist anymore, so I have no idea how to deal with that

lshil00 avatar Dec 26 '21 12:12 lshil00

in tf_mesh_render/WORKPLACE, change pkg to this:

http_archive(
  name = "com_google_googletest",
  urls = ["https://github.com.cnpmjs.org/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip"],
  strip_prefix = "googletest-609281088cfefc76f9d0ce82e1ff6c30cc3591e5",
)

zhanchao019 avatar Dec 30 '21 18:12 zhanchao019

I changed the lines in WORKPLACE file into following:

http_archive( name = "com_google_googletest", urls = ["https://github.com/google/googletest/archive/master.zip"], strip_prefix = "googletest-main", )

This change made to pass first test(kernels:rasterize_triangles_impl_test), which ensured the program running.

e3u3 avatar Mar 08 '22 05:03 e3u3