diff --git a/gradle/nshm.gradle b/gradle/nshm.gradle index c125f642a9a432ab3c473d8eaae3be7899c7a20a..2d4bb0440bb965cf0d31c833bfea013ad8b5dee8 100644 --- a/gradle/nshm.gradle +++ b/gradle/nshm.gradle @@ -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 task testConus2018(type: Test) { description = "Test CONUS 2018 NSHM"