Skip to content

Commit

Permalink
fix ruby 2.3 test issue and add 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danmayer committed Mar 28, 2020
1 parent 0e33379 commit 8194162
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ rvm:
- "2.4"
- "2.5"
- "2.6.1"
- "2.7"
cache:
bundler: true
directories:
- $HOME/lua51
- $HOME/lua51
gemfile:
- Gemfile
- Gemfile.rails4
services:
- redis-server
script:
- sudo ./lua/install.sh
- sudo ./lua/install.sh
- $HOME/lua51/bin/busted lua/test/*
- bundle exec rake rubocop
- COVERBAND_HASH_REDIS_STORE=t bundle exec rake
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
require 'json'
require 'redis'
require 'resque'
require 'pry-byebug'
require 'pry-byebug' unless ENV['CI'] # Ruby 2.3 on CI crashes on pry
require_relative 'unique_files'
$VERBOSE = original_verbosity

Expand Down

0 comments on commit 8194162

Please sign in to comment.