Yuri Smirnov

Results 40 comments of Yuri Smirnov

I added the following patch locally and it seems to do the job: ```ruby module Capistrano module DSL def run_locally(&block) if dry_run? SSHKit::Backend::Printer.new(SSHKit::Host.new(:local), &block).run else SSHKit::Backend::Local.new(&block).run end end end end...

Are you sure you are running tests with spring disabled?

This looks really strange, because AFAIK the way Ruby `Coverage` lib works, is it includes all the files that were required after `Coverage.start` call which happens in `SimpleCov.start` in this...

Wow, for some reason I checked that and decided that `false` is the value we need here. Maybe you can close the issue btw :)

@PragTob hope you will find some time to review the changes.

I solved it by just casting hashes to arrays in my fork (https://github.com/umbrellio/simplecov/blob/add-branch-and-method-coverage/lib/simplecov/result_serialization.rb). So basically stuff like `{ [:x, 1, 2, 3] => [:y, 4, 5, 6] }` gets converted...

Just a little note: I see that CI uses ubuntu-latest and I guess it got updated on October, 22 (see https://wiki.ubuntu.com/Releases).

Oops, I somehow messed October and August :( Sorry about that.

Yeah, must be some update. Maybe Chrome?

Hi, a little update on the issue. Currently things got better, but I still get 1 test randomly failing in main branch: https://github.com/umbrellio/simplecov/runs/1148966104?check_suite_focus=true Note that this is not specific to...