forked from fatfreecrm/fat_free_crm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (44 loc) · 1.44 KB
/
.travis.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
sudo: false
language: ruby
rvm:
- 2.3.3
# - 2.4.0
env:
- DB=mysql
- DB=postgres
- DB=sqlite
matrix:
exclude:
- rvm: 2.3.3
env: DB=mysql
- rvm: 2.3.3
env: DB=sqlite
bundler_args: --path=vendor/bundle --without heroku
cache: bundler
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- sh -c "cp config/database.$DB.yml config/database.yml"
- sh -c "if [ \"$DB\" = 'postgres' ]; then psql -c 'create database fat_free_crm_test;' -U postgres; fi"
- sh -c "if [ \"$DB\" = 'mysql' ]; then mysql -e 'create database fat_free_crm_test;'; fi"
- "RAILS_ENV=test bundle exec rake spec:preparedb"
# Run specs
script:
- "RAILS_ENV=test bundle exec rake spec:models"
- "RAILS_ENV=test bundle exec rake spec:mailers"
- "RAILS_ENV=test bundle exec rake spec:controllers"
- "RAILS_ENV=test bundle exec rake spec:helpers"
- "RAILS_ENV=test bundle exec rake spec:lib"
- "RAILS_ENV=test bundle exec rake spec:mailers"
- "RAILS_ENV=test bundle exec rake spec:routing"
- "RAILS_ENV=test bundle exec rake spec:views"
- "RAILS_ENV=test bundle exec rake spec:features"
- "RAILS_ENV=test bundle exec rubocop"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/859260451e154d78c1be
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false