Chris Ridmann

Results 3 comments of Chris Ridmann

@KaoruDev - I was having similar issues and cloned `rules_scala` locally to see what args were being passed to Scalatest's `Runner`. I think the issue is with this line: https://github.com/bazelbuild/rules_scala/blob/master/src/java/io/bazel/rulesscala/scala_test/Runner.java#L39...

I was going for remote debugging with intellij as well. It works when I put the following args `"-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"` into `jvm_flags` of `scala_test` https://github.com/bazelbuild/rules_scala/blob/master/docs/scala_test.md However, when I try to...

Okay figured that out too: `bazel test //services:tests --test_arg=-z --test_arg='my test' --java_debug --test_output=streamed` It'll start the test and listen for a connection. I then start intellij with a remote debug...