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

Implement processed code coverage data mapper #1028

Open
wants to merge 15 commits into
base: main
Choose a base branch
from

Commits on Jan 21, 2024

  1. Configuration menu
    Copy the full SHA
    8002119 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    45f8ddd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1aafb1b View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Configuration menu
    Copy the full SHA
    408ec71 View commit details
    Browse the repository at this point in the history
  2. Use constant for key

    AndrewFeeney committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    00c1de2 View commit details
    Browse the repository at this point in the history
  3. Use camel case for keys

    AndrewFeeney committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    e6e69bf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1bba525 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    822dedc View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Separate testing for path and function coverage

    - Ensure we are unserialising the function coverage
    AndrewFeeney committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    83112b5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dfe7b55 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4c86758 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9b33999 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6b09e8f View commit details
    Browse the repository at this point in the history
  6. Code style fixes

    AndrewFeeney committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    51e5fac View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Skip file cleanup if the tmp directory has not been created

    - This issue presents when running the test suite for the first time
      (e.g. in CI) since there is no `tests/_files/tmp` directory created.
    - In the one test case which requires the cleanup of these files because
      it creates them it does not fail because the directory is created.
    - The other test cases don't need this tear down, but they fail when it
      tries to run as this directory has not yet been created.
    - In future we'll probably remove both the tear down and the test case
      that needs it as this is probably not an appropriately direct way to
      test this.
    AndrewFeeney committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    d551ba9 View commit details
    Browse the repository at this point in the history