-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
build.gradle
50 lines (44 loc) · 1.1 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'scala'
}
ext {
karateVersion = '1.5.0'
}
dependencies {
testImplementation "io.karatelabs:karate-gatling:${karateVersion}"
}
repositories {
mavenCentral()
// mavenLocal()
}
test {
systemProperty "karate.options", System.properties.getProperty("karate.options")
systemProperty "karate.env", System.properties.getProperty("karate.env")
outputs.upToDateWhen { false }
}
sourceSets {
test {
resources {
srcDir file('src/test/java')
exclude '**/*.java'
exclude '**/*.scala'
}
scala {
srcDirs = ['src/test/java']
}
}
}
// to run, type: "gradle gatling"
task gatlingRun(type: JavaExec) {
group = 'Web Tests'
description = 'Run Gatling Tests'
new File("${buildDir}/reports/gatling").mkdirs()
classpath = sourceSets.test.runtimeClasspath
main = "io.gatling.app.Gatling"
args = [
// change this to suit your simulation entry-point
'-s', 'mock.CatsKarateSimulation',
'-rf', "${buildDir}/reports/gatling"
]
systemProperties System.properties
}