is there any reasonable-ish way to pass environment variables to kotlin/multiplatform test runs (native & js)?
I want to configure the junit xml reporter, html reporter, and allure reporter to all output in the correct directories for a given test (for example using
build/test-results/jvmTest
for the
jvmTest
task,
build/test-results/linuxX64Test
for the
linuxX64Test
task, etc.
from what I can tell there doesn't really seem to be any good solution for this...