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

Feature to handle duplicated test classes #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

kissghosts
Copy link

Implement annotation to avoid including duplicated classes in one test suite.

In occasional cases there may be multiple same test classes in the classpath (e.g. using the following plugin to build project, same classes found both in target/test-classes/ and target/classes/):

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>3.2.0</version>
    <executions>
        <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>src/test/java</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>

@jvanzyl
Copy link
Contributor

jvanzyl commented Aug 31, 2022

I've added GHA CI, if you can rebase this CI will run and if it passes I'll merge it. Sorry this took so long to look at.

@kissghosts
Copy link
Author

I've added GHA CI, if you can rebase this CI will run and if it passes I'll merge it. Sorry this took so long to look at.

Rebasing done.

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

Successfully merging this pull request may close these issues.

None yet

2 participants