Skip to content

Commit d704c55

Browse files
committed
Travis CI: Only run fast testsuites
We could run all testsuites, each in dedicated jobs, because separately, they should take less than 50 minutes. However, this would bloat the build page and blocks other jobs for a significant time. Using `ct-fast` should be enough in Travis CI. All testsuites are still running in Concourse anyway. [#152509619]
1 parent 2b7cee7 commit d704c55

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ before_script:
3737
3838
script:
3939
- make xref
40-
- make tests
40+
- make ct-fast
4141

4242
after_failure:
4343
- |

.travis.yml.patch

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- .travis.yml.orig 2017-11-08 14:23:22.036394000 +0100
2+
+++ .travis.yml 2017-11-08 15:26:19.264520000 +0100
3+
@@ -37,7 +37,7 @@
4+
5+
script:
6+
- make xref
7+
- - make tests
8+
+ - make ct-fast
9+
10+
after_failure:
11+
- |

0 commit comments

Comments
 (0)