Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove restriction on file extension for some parsers #130

Closed

Commits on May 21, 2024

  1. Remove restriction on file extension for some parsers

    Problem
    --------
    All files are now run through the matches?
    method, which is causing issues for the lcov,
    gcov, and simplecov parsers since the
    matches? method checks that files have a
    particular file extension. This is causing failures
    when users pass a custom file.
    
    Solution
    --------
    Always return true for the matches? method
    for lcov, gcov, and simplecov parsers. If the
    user does not specify a custom file, then
    only files that match the extensions listed in
    this method will be returned anyway due to the
    globs method. If a user specifies a custom
    file, we do not want to exclude the file just
    because it does not have the correct extension.
    littleforest committed May 21, 2024
    Configuration menu
    Copy the full SHA
    299dbd3 View commit details
    Browse the repository at this point in the history
  2. revert simplecov change

    littleforest committed May 21, 2024
    Configuration menu
    Copy the full SHA
    2c3b48b View commit details
    Browse the repository at this point in the history
  3. revert gcov changes

    littleforest committed May 21, 2024
    Configuration menu
    Copy the full SHA
    338b878 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Revert final changes

    littleforest committed May 22, 2024
    Configuration menu
    Copy the full SHA
    69403e1 View commit details
    Browse the repository at this point in the history
  2. Revert "revert gcov changes"

    This reverts commit 338b878.
    littleforest committed May 22, 2024
    Configuration menu
    Copy the full SHA
    6488409 View commit details
    Browse the repository at this point in the history