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

Added ability to specify that this is integration tests build for the… #42

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

Conversation

rodneygp
Copy link

@rodneygp rodneygp commented Feb 9, 2019

… case when there are no previous test results.

… case when there are no previous test results.
Comment on lines -166 to +175
testFilesExpression.add("**/src/test/java/**/Test*.java");
testFilesExpression.add("**/src/test/java/**/*Test.java");
testFilesExpression.add("**/src/test/java/**/*Tests.java");
testFilesExpression.add("**/src/test/java/**/*TestCase.java");
if (integrationTests) {
testFilesExpression.add("**/src/test/java/**/*IT.java");
} else {
testFilesExpression.add("**/src/test/java/**/Test*.java");
testFilesExpression.add("**/src/test/java/**/*Test.java");
testFilesExpression.add("**/src/test/java/**/*Tests.java");
testFilesExpression.add("**/src/test/java/**/*TestCase.java");
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems more familiar to just add *IT.java to the stock list?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants