Get Stack to pass test suite name as part of --test-arguments
问题 It's possible, with cabal, to set up a continuous build that records test successes/failures in a format many CI systems will accept with a command like: cabal test '--test-option=--jxml=test-results/$test-suite.xml' The important part here is that $test-suite is replaced with the name of the test, so that different tests put their results into different files. When I use stack, all tests get literally the option --jxml=test-results/$test-suite.xml passed to them, so the end result is that