in src/main/java/org/jenkinsci/plugins/awsdevicefarm/AWSDeviceFarm.java [309:320]
public Boolean isRestrictedDefaultSpec(Upload testSpec) {
if (testSpec != null) {
if ((APPIUM_RUBY_TEST_SPEC.equals(testSpec.getType()) ||
APPIUM_NODE_TEST_SPEC.equals(testSpec.getType()) ||
APPIUM_WEB_RUBY_TEST_SPEC.equals(testSpec.getType()) ||
APPIUM_WEB_NODE_TEST_SPEC.equals(testSpec.getType())) &&
(CURATED.equals(testSpec.getCategory()))) {
return true;
}
}
return false;
}