Closed tagliala closed 1 month ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 98.92%. Comparing base (
9cabeb6
) to head (e20fa1a
). Report is 3 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
require_relative
is preferred overrequire
for files within the same project because it uses paths relative to the current file, making code more portable and less dependent on the load path.This change updates internal requires to use
require_relative
for consistency, performance, and improved portability.Ref: