When run commands from readme instruction step-by-step in "bazel test ..." I receive error in terminal:
ERROR: Bad target pattern '../..': package name component contains only '.' characters.
INFO: Elapsed time: 0.113s
ERROR: Couldn't start the build. Unable to run tests.
Please provide details about what platform you are using (operating system, architecture). Also include your TensorFlow version. Also, did you compile from source or install a binary? Make sure you also include the exact command if possible to produce the output included in your test case. If you are unclear what to include see the issue template displayed in the Github new issue template.
We ask for this in the issue submission template, because it is really difficult to help without that information. Thanks!
I thought you maybe run this cli under zsh. I met this problem too.
Since there exists some difference between zsh and bash, here you should use "" to quote those three dots under zsh, say bazel test "..."
, then everything is ok.
as alexwwang pointed out, the problem occurs when you're using zsh, also his solution completely worked
Automatically closing due to lack of activity. Please re-open if there are further updates.
Most helpful comment
I thought you maybe run this cli under zsh. I met this problem too.
Since there exists some difference between zsh and bash, here you should use "" to quote those three dots under zsh, say
bazel test "..."
, then everything is ok.