File tree Expand file tree Collapse file tree 3 files changed +56
-1
lines changed Expand file tree Collapse file tree 3 files changed +56
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ matrix:
37
37
- txt2tags
38
38
- xvfb
39
39
- clang-3.8
40
+ - grc
40
41
41
42
42
43
- os : linux
Original file line number Diff line number Diff line change
1
+ # A readme that explains the configuration options can be found here
2
+ # http://korpus.juls.savba.sk/~garabik/software/grc/README.txt
3
+
4
+ ####################
5
+ # Early exit, lines that do not need to be processed further
6
+ ####################
7
+
8
+ # DEFAULT: the final FAILED line in failed nose tests
9
+ regexp=^FAILED (failures=[0-9])$
10
+ colours=default
11
+ count=stop
12
+ -
13
+
14
+ ###################
15
+ # Failed test block
16
+ ###################
17
+
18
+ # YELLOW: A test failed, start a yellow block
19
+ regexp=^FAIL[:\!].*
20
+ colours=yellow
21
+ count=block
22
+ -
23
+ # YELLOW END: End block on next successful test
24
+ regexp=^PASS
25
+ colours=default
26
+ count=unblock
27
+ -
28
+ # YELLOW END: End block on next successful test
29
+ regexp=^Ran
30
+ colours=default
31
+ count=unblock
32
+ -
33
+
34
+ ####################
35
+ # Unit test name (title)
36
+ ####################
37
+
38
+ # RED: test name
39
+ regexp=.*Test.*\*\*\*Failed.*sec
40
+ colours=red
41
+ -
42
+
43
+ ####################
44
+ # Successful tests
45
+ ####################
46
+
47
+ # DARK GRAY: passed tests should be unobtrusive
48
+ regexp=.*Test.*Passed.*sec
49
+ colours="\033[90m"
50
+ -
51
+ # DARK GRAY: Start test lines should be unobtrusive
52
+ regexp=\s{8}Start.*
53
+ colours="\033[90m"
Original file line number Diff line number Diff line change @@ -32,5 +32,6 @@ if [ "$CACHE_WARMING" = true ] ; then
32
32
xvfb-run ctest -V -R NOTESTS -S ./qgis-test-travis.ctest --output-on-failure
33
33
false
34
34
else
35
- xvfb-run ctest -V -E " $( cat ${DIR} /blacklist.txt | sed -r ' /^(#.*?)?$/d' | paste -sd ' |' -) " -S ./qgis-test-travis.ctest --output-on-failure
35
+ grc -c ${TRAVIS_BUILD_DIR} /ci/travis/linux/.grc.colors \
36
+ xvfb-run ctest -V -E " $( cat ${DIR} /blacklist.txt | sed -r ' /^(#.*?)?$/d' | paste -sd ' |' -) " -S ./qgis-test-travis.ctest --output-on-failure
36
37
fi
You can’t perform that action at this time.
0 commit comments