You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notably, Ubuntu 22.04 is still using Ruby 3.0.X. Coverage.start is available in 3.0, and should achieve the same effect. We need to either unconditionally call Coverage.start, or find a way to conditionally call start vs. setup, and test that this works on Ubuntu 22.04.
The text was updated successfully, but these errors were encountered:
For reasons related to #9, Ruzzy requires calling
Coverage.setup
for its coverage support:ruzzy/ext/cruzzy/cruzzy.c
Lines 195 to 211 in 0f554e6
Unfortunately,
Coverage.setup
was not added until Ruby 3.1.0:Notably, Ubuntu 22.04 is still using Ruby 3.0.X.
Coverage.start
is available in 3.0, and should achieve the same effect. We need to either unconditionally callCoverage.start
, or find a way to conditionally callstart
vs.setup
, and test that this works on Ubuntu 22.04.The text was updated successfully, but these errors were encountered: