Created
February 23, 2015 18:27
-
-
Save chbatey/fc3fb0d15a3b9d925ccc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task runLoadTest(type: JavaExec) { | |
classpath = sourceSets.main.runtimeClasspath + sourceSets.test.runtimeClasspath + sourceSets.e2eTest.runtimeClasspath | |
jvmArgs = [ '-Dgatling.core.directory.binaries=./build/classes/e2eTest' ] | |
// Gatling application | |
main = "io.gatling.app.Gatling" | |
// Specify the simulation to run | |
args = Eval.me("['-s', 'BasicSimulation']") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment