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

[pitest-maven] report-aggregate fails while loading mutator class #622

Open
aurelien-baudet opened this issue Jun 14, 2019 · 0 comments
Open

Comments

@aurelien-baudet
Copy link
Contributor

I run pitmp with descartes mutationEngine on my whole project to generate reports for each module.
Then I run pitest-maven report-aggregate on a reporting module (dedicated module that has dependencies to all other modules).
I get the following error:

[ERROR] Failed to execute goal org.pitest:pitest-maven:1.4.7:report-aggregate (merge-pitest-reports) on project reporting: An error has occurred in PIT Test Report report generation.: Cannot convert to mutator: false: Unable to load Mutator for class: false -> [Help 1]

The issue comes either from this code (in ReportAggregator):

private static Function<MutationResult, List<String>> resultToMutatorName() {
    return a -> {
      try {
        final String mutatorName = MutatorUtil.loadMutator(a.getDetails().getMutator()).getName();
        return Collections.singletonList(mutatorName);
      } catch (final Exception e) {
        throw new RuntimeException("Cannot convert to mutator: " + a.getDetails().getMutator(), e);
      }
    };
  }

or this code (in MutationResultDataLoader):

protected MutationResult mapToData(final Map<String, Object> map) {
    final Location location = new Location(ClassName.fromString((String) map.get(MUTATED_CLASS)), MethodName.fromString((String) map.get(MUTATED_METHOD)),
        (String) map.get(METHOD_DESCRIPTION));

    final MutationIdentifier id = new MutationIdentifier(location, Arrays.asList(new Integer((String) map.get(INDEX))), (String) map.get(MUTATOR));

    final MutationDetails md = new MutationDetails(id, (String) map.get(SOURCE_FILE), (String) map.get(DESCRIPTION),
        Integer.parseInt((String) map.get(LINE_NUMBER)), Integer.parseInt((String) map.get(BLOCK)));

    final MutationStatusTestPair status = new MutationStatusTestPair(Integer.parseInt((String) map.get(NUMBER_OF_TESTS_RUN)),
        DetectionStatus.valueOf((String) map.get(STATUS)), (String) map.get(KILLING_TEST));

    return new MutationResult(md, status);
  }

The mapToData method converts the XML data into a MutationResult. The MutationIdentifier references the mutatorUniqueId. However MutatorUtil.loadMutator expects a class name to load a MethodMutatorFactory instance from a.getDetails().getMutator() (which returns the mutatorUniqueId instead of a class name).

A fix could be to change resultToMutatorName method by:

  private static Function<MutationResult, List<String>> resultToMutatorName() {
    return a -> {
      try {
        final String mutatorName = a.getDetails().getMutator();
        return Collections.singletonList(mutatorName);
      } catch (final Exception e) {
        throw new RuntimeException("Cannot convert to mutator: " + a.getDetails().getMutator(), e);
      }
    };
  }

or to fix XML report generation to write className instead of unique identifier.

aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 14, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 15, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 16, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 17, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 17, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 17, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 17, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 17, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 17, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- TODO: report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
- Add coverage report in codecov
- TODO: run mutation tests in Travis or other CI tool for develop and master branches
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 20, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 20, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 20, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 21, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in Travis
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 23, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 23, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 23, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 23, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 24, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 25, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 25, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to groupe-sii/ogham that referenced this issue Jun 25, 2019
- Add profiles to run mutation tests
- Generate mutation reports for each module
- TODO: mutation tests for Spring Boot modules fail
- report aggregation doesn't work for now (see hcoles/pitest#622 and hcoles/pitest#621)
  => using a temporary fix
- Add coverage report in codecov
- Run mutation tests in CircleCI
- Generate site and documentation in CircleCI
aurelien-baudet added a commit to aurelien-baudet/pitest that referenced this issue Jan 5, 2020
- hcoles#621: do not use test dependencies as test source directories
- hcoles#622: use the name of the mutator (it is not a class name written in mutations.xml)
aurelien-baudet added a commit to aurelien-baudet/pitest that referenced this issue Jul 28, 2020
- hcoles#621: do not use test dependencies as test source directories
- hcoles#622: use the name of the mutator (it is not a class name written in mutations.xml)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant