Re: how to use dub to run all / chosen dependency lib's unittests

2022-09-19 Thread mw via Digitalmars-d-learn
On Monday, 19 September 2022 at 23:57:31 UTC, Steven Schveighoffer wrote: I don't see any specific command to do it in dub itself. I've recently discovered that `dub describe` gives you the directories of all your dependencies in a JSON format. I used this to write an install script for de

Re: how to use dub to run all / chosen dependency lib's unittests

2022-09-19 Thread Steven Schveighoffer via Digitalmars-d-learn
On 9/19/22 7:48 PM, mw wrote: Hi, I'm using dub.json to specify the dependencies libs for my project. I'm just wondering how I can use dub to run all the tests of those dependencies libs (of the transitive closure of *all* the libs) to make sure my project is built on a very solid foundation?

how to use dub to run all / chosen dependency lib's unittests

2022-09-19 Thread mw via Digitalmars-d-learn
Hi, I'm using dub.json to specify the dependencies libs for my project. I'm just wondering how I can use dub to run all the tests of those dependencies libs (of the transitive closure of *all* the libs) to make sure my project is built on a very solid foundation? I know this could be very