charleskorn
03/21/2022, 10:08 PM./gradlew macosArm64Test --tests '<class name>'
but that runs all of my tests
(I swear I’ve seen something about this before but I can’t find it, apologies if this is already covered somewhere)charleskorn
04/13/2022, 7:53 AMsam
04/13/2022, 7:54 AMsam
04/13/2022, 7:54 AMsam
04/13/2022, 7:55 AMcharleskorn
04/14/2022, 11:38 PMSystemPropertySpecFilterInterceptor
and SystemPropertyTestFilterEnabledExtension
both check both system properties and environment variables when doing filtering. (For example, SystemPropertySpecFilterInterceptor
checks for the kotest.filter.specs
system property and then the environment variable of the same name.)
However, kotest.filter.specs
and kotest.filter.tests
, while valid system property names, are not considered valid environment variable names by many shells due to the .
characters, so this is very difficult to use. Would you be open to a PR that changes those two interceptors to look for the environment variables with the dots replaced by underscores?sam
04/15/2022, 2:38 AMcharleskorn
04/15/2022, 6:48 AM