-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.colorize.conf
36 lines (31 loc) · 890 Bytes
/
.colorize.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# tipical things
"^-+$", 1, white
"^=+$", 1, white
# configuration for nose
"^FAILURE", 1, white, red
"^FAILED (.*)$", 1, white, red
"^FAIL:.*", 1, red
"^OK", 1, white, green
"^Ran \d+ tests in .*", true, blue
"^AssertionError: .*", false, white, magenta
".* \.\.\. ok$", 0, green
".* \.\.\. FAIL$", 1, red
".* \.\.\. ERROR$", 1, white, red
# configuration to simulate colordiff
"^>.*", 0, blue
"^<.*", 0, red
"^\d+,?\d*c\d+,?\d*$", 0, magenta
# configuration for git status
"^#\s+modified:.*", true, red
"^#\s+deleted:.*", true, red
"^#\s+new file:.*", true, red
"^# On branch .*", true, green
"^# Changes to be committed:", false, green
"^# Changes not staged for commit:", false, green
"^#\s+\(use .*", false, blue
"^# Your branch is ahead of .*", false, blue
# configuration for go
"^PASS", 1, white, green
"^ok", 0, white, green
"^FAIL", 1, white, red
"^--- FAIL:", 0, white, red