File tree 2 files changed +25
-3
lines changed
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ test :
2
+ adapter : mysql2
3
+ database : peatio_test
4
+ username : root
5
+ encoding : utf8
6
+ cucumber :
7
+ adapter : mysql2
8
+ database : peatio_test
9
+ username : root
10
+ encoding : utf8
Original file line number Diff line number Diff line change
1
+ language : ruby
2
+ rvm :
3
+ - 2.1.0
1
4
before_install :
2
5
- sudo apt-get update
3
6
- sudo apt-get install -y libfontconfig libfontconfig-dev libfreetype6-dev
4
7
- sudo apt-get install -y qrencode libqrencode-dev
8
+ before_script :
9
+ - " mysql -e 'create database my_app_test;'"
10
+ - " cp ./.travis.database.yml ./config/database.yml"
11
+ script :
12
+ - bundle exec rake db:schema:load
13
+ - bundle exec rake db:test:prepare
14
+ - bundle exec rake spec
15
+ after_failure :
16
+ - " mysql -e 'show databases;'"
17
+ - " cat ./config/database.yml"
18
+ - " echo $RAILS_ENV"
19
+ - " bundle exec rake --version"
5
20
notifications :
6
21
webhooks : https://peatio.slack.com/services/hooks/travis?token=Rah5xOTiG33TryAfoV0peOKz
7
- language : ruby
8
- rvm :
9
- - 2.1.0
You can’t perform that action at this time.
0 commit comments