summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2021-07-07 18:25:58 +0300
committerKyrylo Silin <silin@kyrylo.org>2021-07-09 23:10:43 +0300
commit9732805a744497bbea62932ee05bc350a0816b8a (patch)
tree7cd402d46d9e862416824b0721be0443cbea8464 /spec
parent7a2284f8a74bca3489e780769325c2b44619991b (diff)
downloadpry-9732805a744497bbea62932ee05bc350a0816b8a.tar.gz
Fix failing build on 2.4 & 2.5
Example failure: https://github.com/pry/pry/runs/3010680604 ``` ArgumentError: wrong number of arguments (given 4, expected 1) /home/runner/work/pry/pry/vendor/bundle/ruby/2.4.0/gems/psych-4.0.1/lib/psych.rb:323:in `safe_load' ``` I am not sure what exactly causes the failure but deleting simplecov dependency fixes (I guess?) this problem.
Diffstat (limited to 'spec')
-rw-r--r--spec/spec_helper.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index d3335bec..0e28394c 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,10 +1,5 @@
# frozen_string_literal: true
-if ENV['COVERAGE']
- require 'simplecov'
- SimpleCov.start
-end
-
require 'pry'
require 'rspec'