Skip to content

Commit

Permalink
test 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Holst committed Sep 5, 2019
1 parent 121b993 commit 00d97e1
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,23 @@ language: ruby
rvm:
- "2.5.1"

before_script:
- "cd test/user && bundle install && rails db:create db:migrate"
- "cd test/employee && bundle install && rails db:create db:migrate"

# before_install:
# - "cd test/user"
# - "bundle install"
# - "rake db:create"
# - "rake db:migrate"
# # - "cd ../.."
# # - "cd test/employee && bundle install && rails db:create db:migrate"
#
script:
- "cd test/user && bundle exec rails test"
- "cd test/employee && bundle exec rails test"
- "cd test/user"
- "bundle install"
- "rake db:create"
- "rake db:migrate"
- "bundle exec rake test"
- "cd .."
- "cd employee"
- "bundle install"
- "rake db:create"
- "rake db:migrate"
- "bundle exec rake test"

0 comments on commit 00d97e1

Please sign in to comment.