Lines Matching +full:integ +full:- +full:tests
2 """Run Integ Tests based on the changed files
7 # Minimal modules to tests when core changes are detected.
8 # s3 - xml, dynamodb - json, sqs - query
11 # Minimal modules to tests when http client changes are detected.
12 # s3 - streaming/non streaming, kinesis - h2
14 "apache-client": ["s3", "apache-client"],
15 "netty-nio-client": ["kinesis", "s3", "netty-nio-client"],
16 "url-connection-client": ["url-connection-client"]
23 process = Popen(["git", "diff", "HEAD^", "--name-only"], stdout=PIPE)
37 # filter out non-java file
38 if not path[-1].endswith(".java"):
45 if top_directory in ["http-clients"]:
52 Run integration tests for the given modules
54 print("Running integ tests in the following modules: " + ', '.join(modules))
61 modules_to_include = modules_to_include[:-1]
64 check_call(["mvn", "clean", "install", "-pl", modules_to_include, "-P", "quick", "--am"])
65 …check_call(["mvn", "verify", "-pl", modules_to_include, "-P", "integration-tests", "-Dfailsafe.rer…
80 print("No modules configured to run. Skipping integ tests")