Skip to content
Snippets Groups Projects
Commit 60ddb193 authored by Qinusty's avatar Qinusty Committed by Qinusty
Browse files

message.py: MessagesType.SKIPPED added

parent eabc3899
No related branches found
No related tags found
1 merge request!562Add SKIPPED message type for actions being skipped
......@@ -160,6 +160,7 @@ class TypeName(Widget):
MessageType.START: "blue",
MessageType.SUCCESS: "green",
MessageType.FAIL: "red",
MessageType.SKIPPED: "yellow",
MessageType.ERROR: "red",
MessageType.BUG: "red",
}
......
......@@ -36,6 +36,7 @@ class MessageType():
START = "start" # Status start message
SUCCESS = "success" # Successful status complete message
FAIL = "failure" # Failing status complete message
SKIPPED = "skipped"
# Messages which should be reported regardless of whether
......
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