-
I've successfully loaded a Scala project into VS Code with Metals, and can build everything fine. I can also run tests from within the VS Code UI successfully. However, if I try to run these same tests by starting
The full exception is:
This used to work until I installed Metals, so I suspect Bloop is somehow the cause of this problem. Otherwise, what I do in an independent terminal session shouldn't have any relationship to what I'm doing in VS Code. Before trying Metals, I was able to load this project in IntelliJ and simultaneously run tests via the sbt console in a separate terminal session without issue. What should I do to troubleshoot? The project runs on sbt 1.3.13 and Scala 2.11.12. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
It seems it's failing to start the forked test process due to |
Beta Was this translation helpful? Give feedback.
It seems it's failing to start the forked test process due to
CMSClassUnloadingEnabled
, but Metals does not add that option. Do you know where is it coming from? It shouldn't also come from Bloop really.