Commit 2c1471aedb1c2a32af3ef3278e2896eade542332
1 parent
9f233c8b
Exists in
master
and in
17 other branches
group all non-smoke tests
Showing
1 changed file
with
7 additions
and
8 deletions
Show diff stats
.gitlab-ci.yml
... | ... | @@ -7,8 +7,7 @@ before_script: |
7 | 7 | |
8 | 8 | stages: |
9 | 9 | - smoke-tests |
10 | - - not-so-slow-tests | |
11 | - - slow-tests | |
10 | + - all-tests | |
12 | 11 | |
13 | 12 | smoke: |
14 | 13 | script: bundle exec rake ci:smoke |
... | ... | @@ -16,24 +15,24 @@ smoke: |
16 | 15 | |
17 | 16 | units: |
18 | 17 | script: bundle exec rake test:units |
19 | - stage: not-so-slow-tests | |
18 | + stage: all-tests | |
20 | 19 | |
21 | 20 | functionals: |
22 | 21 | script: bundle exec rake test:functionals |
23 | - stage: not-so-slow-tests | |
22 | + stage: all-tests | |
24 | 23 | |
25 | 24 | integration: |
26 | 25 | script: bundle exec rake test:integration |
27 | - stage: not-so-slow-tests | |
26 | + stage: all-tests | |
28 | 27 | |
29 | 28 | cucumber: |
30 | 29 | script: bundle exec rake cucumber |
31 | - stage: slow-tests | |
30 | + stage: all-tests | |
32 | 31 | |
33 | 32 | selenium: |
34 | 33 | script: bundle exec rake selenium |
35 | - stage: slow-tests | |
34 | + stage: all-tests | |
36 | 35 | |
37 | 36 | plugins: |
38 | 37 | script: bundle exec rake test:noosfero_plugins |
39 | - stage: slow-tests | |
38 | + stage: all-tests | ... | ... |