Skip to content
Snippets Groups Projects
Commit 7610e8d9 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add web test

parent 39f62eff
No related branches found
No related tags found
1 merge request!793Test Web Service
...@@ -208,6 +208,32 @@ task testAlaska2023(type: Test) { ...@@ -208,6 +208,32 @@ task testAlaska2023(type: Test) {
} }
} }
// Test Alaska 2023 NSHM
task testWebAlaska2023(type: Test) {
description = "Test Alaska 2023 NSHM"
group = "verification"
doFirst {
downloadNshm(findNshm("nshm-alaska", 2023))
}
testLogging {
exceptionFormat "full"
}
systemProperties(System.getProperties())
useJUnitPlatform()
jvmArgs(
"-Xms2g",
"-Xmx${xmx}",
)
filter {
includeTestsMatching "gov.usgs.earthquake.nshmp.model.NshmTests.testWebAlaska2023"
}
}
// Test CONUS 2018 NSHM // Test CONUS 2018 NSHM
task testConus2018(type: Test) { task testConus2018(type: Test) {
description = "Test CONUS 2018 NSHM" description = "Test CONUS 2018 NSHM"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment