Move to dd-smoke-test project
This commit is contained in:
parent
e66f91cb49
commit
55787b4fb4
|
@ -114,7 +114,7 @@ task deletePIDFile() {
|
|||
|
||||
tasks.withType(Test) {
|
||||
// so the test can get this property
|
||||
jvmArgs "-Ddatadog.ittest.server.port=${playHttpPort}"
|
||||
jvmArgs "-Ddatadog.smoketest.server.port=${playHttpPort}"
|
||||
|
||||
testLogging {
|
||||
events "started"
|
|
@ -8,7 +8,7 @@ import spock.lang.Specification
|
|||
class PlaySmokeTest extends Specification {
|
||||
|
||||
OkHttpClient client = OkHttpUtils.client()
|
||||
private int port = Integer.parseInt(System.getProperty("datadog.ittest.server.port", "8080"))
|
||||
private int port = Integer.parseInt(System.getProperty("datadog.smoketest.server.port", "8080"))
|
||||
|
||||
def "welcome endpoint #n th time"() {
|
||||
setup:
|
|
@ -17,10 +17,9 @@ include ':dd-java-agent:agent-jmxfetch'
|
|||
// misc
|
||||
include ':dd-java-agent:testing'
|
||||
|
||||
// smoke tests
|
||||
include ':dd-smoke-tests:wildfly'
|
||||
|
||||
include ':dd-java-agent-ittests'
|
||||
include ':dd-java-agent-ittests:play-ittests'
|
||||
include ':dd-smoke-tests:play'
|
||||
|
||||
// instrumentation:
|
||||
include ':dd-java-agent:instrumentation:akka-http-10.0'
|
||||
|
|
Loading…
Reference in New Issue