I have a benchmark script: ```// benchmark.scenari...
# gradle
s
I have a benchmark script:
Copy code
// benchmark.scenarios
experiment {
    tasks = ["app:testDebugUnitTest --tests MyTest"]
}
And I execute:
Copy code
gradle-profiler --benchmark --scenario-file performance.scenarios experiment
But error:
Copy code
Cannot locate tasks that match 'app:testDebugUnitTest --tests FooTest' as task not found in project ':app'
My question: Does gradle-profiler not support additional parameter to the task?
It works fine if the task is just: "app:testDebugUnitTest"
j
try separate the argument from the task by comma
thank you color 1