Hi!
the running of tests in a groups with different results and report the results in one go.
ExUnit.start(groups: [{"pg", [env: [{"ECTO_ADAPTER", ...}]]}, {"myxql", [env: [{"ECTO_ADAPTER", ...}]]}])
But as a result, we should see one combined output (how many tests are runned, how many failed) for all environments.
The same would be useful for umbrella apps to be able to run from a single `ExUnit` and see reported for all apps in the end.
At the moment you see all tests are successful(for last app), but the test run failed, so you need to scroll and find which app exactly is failed.
The ExUnit group functionality should give easiness of configuration/running tests with different environments (as it is oft needed for complex
even for different environments and different umbrella applications.
I'm available to tackle this, if this would be accepted as feature.
What do you think about this?