You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running the jmeterListTestPlan task looks for test plans in the folder returned by getSrcDir(). It should also look in any other custom locations added through properties.
The text was updated successfully, but these errors were encountered:
I started working on a fix for this, I will send you my simple test project when I get back to my dev machine this evening. The problem I was facing is, if I define jmeterTestFiles in build.gradle like this:
getJmeterTestFiles() returns the List<File> in jmeterRun task, but is null in the jmeterListTestPlan task. I couldn't figure out how to make jmeterRun configuration available to other tasks as well.
if you run gradle jmeterrun it runs nonDefaultLocation,jmx as specified in build.gradle. However if you run gradle jmeterListTestPlan it lists DefaultLocation,jmx instead.
running the
jmeterListTestPlan
task looks for test plans in the folder returned bygetSrcDir()
. It should also look in any other custom locations added through properties.The text was updated successfully, but these errors were encountered: