Build JMS tests from Makefile

This commit is contained in:
Arthur Barr
2018-03-21 10:12:36 +00:00
parent 94a4eac2ca
commit 54885597fa
4 changed files with 22 additions and 3 deletions

View File

@@ -49,6 +49,14 @@ func imageName() string {
return image
}
func imageNameDevJMS() string {
image, ok := os.LookupEnv("DEV_JMS_IMAGE")
if !ok {
image = "mq-dev-jms-test"
}
return image
}
func coverage() bool {
cover := os.Getenv("TEST_COVER")
if cover == "true" || cover == "1" {