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 due to test dependencies #621

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

Comments

@aurelien-baudet
Copy link
Contributor

I run pitmp 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.8:report-aggregate (merge-pitest-reports) on project reporting: An error has occurred in PIT Test Report report generation.: /home/---/.m2/repository/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar is not a directory -> [Help 1]

I tried to understand why this is happening so I ran maven in debug mode and debugged pitest-maven. Here is the code that seems wrong to me (in AbstractPitAggregationReportMojo class):

  private List<File> getCompiledDirs(final MavenProject project)
      throws Exception {
    final List<String> sourceRoots = new ArrayList<>();
    for (final Object artifactObj : FCollection
        .filter(project.getPluginArtifactMap().values(), new DependencyFilter(
            new PluginServices(this.getClass().getClassLoader())))) {

      final Artifact artifact = (Artifact) artifactObj;
      sourceRoots.add(artifact.getFile().getAbsolutePath());
    }
    return convertToRootDirs(project.getTestClasspathElements(),
        Arrays.asList(project.getBuild().getOutputDirectory(),
            project.getBuild().getTestOutputDirectory()),
        sourceRoots);
  }

The call to project.getTestClasspathElements() returns the list of test sources but also the list of dependencies. Then in ReportAggregator, the method addCompiledCodeDirectory calls validateDirectory with this code:

    private void validateDirectory(final File directory) {
      if (directory == null) {
        throw new IllegalArgumentException("directory is null");
      }
      // For this method, a non existing directory is valid.
      // It probably needs some special treatment later, but it shouldn't prevent the aggregator to be built.
      if (directory.exists() && !directory.isDirectory()) {
        throw new IllegalArgumentException(directory.getAbsolutePath() + " is not a directory");
      }
    }

It fails here due to dependencies that are jars and not folders.

I think the issue comes from use of getTestClasspathElements(). If you want only directories, it should be getTestCompileSourceRoots() instead.

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 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)
@astrod0m
Copy link

astrod0m commented Jun 14, 2021

Hey, seeing the same problem, are there any updates on this, please? FYI it happens for a multi-module project even if using the pitest-maven plugin instead of pitmp.

@dan323
Copy link

dan323 commented Nov 22, 2021

When is this going to be merged @hcoles @aurelien-baudet so we have a working report-aggregate? Seems such a simple solution. Thank you for your hard work!

@aurelien-baudet
Copy link
Contributor Author

Waiting for @hcoles to merge it

@dan323
Copy link

dan323 commented Jan 11, 2022

@hcoles not merging it?

@hcoles
Copy link
Owner

hcoles commented Jan 11, 2022

@dan323 as per my comment on the PR, happy to merge if someone can resolve the conflicts and confirm that it works.

@milindbangar79
Copy link

I am facing the same issue ? Any plan to fix it?

@rnveach
Copy link
Contributor

rnveach commented Jan 13, 2023

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

6 participants