-
Notifications
You must be signed in to change notification settings - Fork 36
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
Allure gradle plugin causes execution of additonal test sets as part of build task #75
Comments
We have noticed the same behaviour, where tests are being run when requesting the @benjamindibonasonos Could you verify that you also see those tests executed if you run |
If you need to configure allure for certain tasks only, I would suggest the following:
However, it might be worth adding a slightly better DSL instead of |
@NielsDoucet I can confirm that these tests are executed with the "assemble" task.
|
I'm submitting a ...
What is the current behavior?
After upgrading Allure gradle plugin from 2.8.1 to 2.9.4, the gradle build task now includes compilation and execution of test sets other than unit tests.
We use the gradle test sets plugin to manage our integration tests, which states
https://github.com/unbroken-dome/gradle-testsets-plugin
Reverting back to allure-gradle 2.8.1, the build task only executes the unit tests, which is the expected behavior.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
What is the expected behavior?
Gradle build task should only execute unit tests.
Please tell us about your environment:
| allure-gradle version | 2.9.4 |
| Gradle version | 6.9 |
| Unbroken Dome Test-Sets version| 4.0.0 |
| Test framework | JUnit 5 |
Other information
We have included a testSets configuration in build.gradle like the following:
testSets { functionalTests {} }
The text was updated successfully, but these errors were encountered: