mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 04:36:43 +00:00
test(GODT-1602): run integration tests against black 🖤
This commit is contained in:
@ -132,9 +132,19 @@ func getFeatureTags() string {
|
||||
tags = ""
|
||||
case "smoke": // Currently this is just a placeholder, as there are no scenarios tagged with @smoke
|
||||
tags = "@smoke"
|
||||
case "black": // Currently this is just a placeholder, as there are no scenarios tagged with @smoke
|
||||
tags = "~@skip-black"
|
||||
default:
|
||||
tags = "~@regression && ~@smoke" // To exclude more add `&& ~@tag`
|
||||
}
|
||||
|
||||
return tags
|
||||
}
|
||||
|
||||
func isBlack() bool {
|
||||
if len(os.Args) == 0 {
|
||||
return false
|
||||
}
|
||||
|
||||
return os.Args[len(os.Args)-1] == "black"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user