https://clojurians.slack.com/archives/C8NUSGWG6/p1771325345906909
when executing "poly test", does it load the :test namespace from the root deps.edn? do i have to add all the bricks and projects test paths? does it depend on the test-runner?
You mean the paths specified in the :test key (e.g. https://github.com/polyfy/polylith/blob/dc18d7a2baf69e03086fddfa408e1097fa4c45fa/deps.edn#L65)? No, that is only for the IDE integration to work properly. It's enough to list the bricks (e.g. like https://github.com/polyfy/polylith/blob/dc18d7a2baf69e03086fddfa408e1097fa4c45fa/deps.edn#L5) and the internal or external test runners will pick up the test directories and run the tests.
ok thanks but what do you mean "list the bricks"? where should i list them?
if i dont list anything in the :dev and :test keys, should poly pick and run the tests?
Normally, you list all (or most of) your bricks in deps.edn with the :local/root syntax.