Hi there!
Recently we started using :group option for ExUnit in a project.
For those tests I have had a setup helper where amongst other things I used to check if tags[:async] is not set to true. Otherwise it would raise an error or print a warning saying that it will introduce a flaky test.
Now I want to be able to check if the test runs in the group, but there is no similar to tags[:async] tag for the value for :group.
I figured that this small change would inject the value of the group to the test context.
In that change :group acts as a reserved word, but only for tests that run in a dedicated group.
I see that it effectively introduces a breaking change, so perhaps some other way we could achieve that goal?