Skip to content

Commit 287276c

Browse files
committed
Disable travis-ci
1 parent 3257527 commit 287276c

File tree

2 files changed

+2
-54
lines changed

2 files changed

+2
-54
lines changed

.travis.yml

-52
This file was deleted.

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22
require 'bundler/gem_tasks'
33
require 'rake/testtask'
4-
Rake::TestTask.new 'test' do |t|
4+
Rake::TestTask.new :test do |t|
55
if ENV['SOCKET_PATH'].nil?
66
sock_file = Dir.glob("#{__dir__}/**/redis.sock").first
77

@@ -21,7 +21,7 @@ Rake::TestTask.new 'test' do |t|
2121
t.test_files = ARGV[1..-1]
2222
end
2323

24-
t.options = '-v'
24+
t.options = '-v' if ENV['CI'] || ENV['VERBOSE']
2525
end
2626

2727
task default: :test

0 commit comments

Comments
 (0)