How disabled auto add listener AllureTestNG, if i already add CustomAllureTestNG? #3051
Answered
by
baev
csfedorov
asked this question in
Questions & Support
-
I connected the allure-testng dependency, made my CustomAllureTestNG, he extends from AllureTestNG. I added CustomAllureTestNG, but I always have an additional AllureTestNG lisener enabled by default. How can I turn off the automatic addition of AllureTestNG?
|
Beta Was this translation helpful? Give feedback.
Answered by
baev
Jul 8, 2025
Replies: 1 comment 1 reply
-
Add 'spi-off' classifier to the dependency: <dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-testng</artifactId>
<version>2.29.1</version>
<classifier>spi-off</classifier>
</dependency> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
csfedorov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add 'spi-off' classifier to the dependency: