I am working with chisel-template
In my src/main/scala I have two folders, let say A and B.
In src/test/scala, I have a folder for A and a folder for B.
I want to test only A but when I do
$ sbt "test:runMain A.TestMain"
I have the errors of B which make the compilation fail. I know there are problems in B but I just want to check A first.
How can I test or compile only one folder ?
Thanks !