I used the sbt-scoverage for our Play application.
I used the following config to exclude both Reverse and Routes generated file.
coverageExcludedPackages := ";Reverse.;Routes.;"
However this can only exclude generated Reverse scala files and can't exclude Routes files. Even I use the following script, it does the same
coverageExcludedPackages := ";Routes.*;"
Anyone knows what is the correct regex should be?