d10xa / gradle-allure-plugin

Gradle plugin generating Allure report from test results
Apache License 2.0
23 stars 2 forks source link

Support allure.properties #8

Open akoval opened 7 years ago

akoval commented 7 years ago

Is there a way to handle allure.properties?

I created allure.properties in my resources folder and setup allure.issues.tracker.pattern with my bug tracker In report I still see relative links with my FS, not linked to declared bug tracker

d10xa commented 7 years ago

@akoval You can configure it as system property

allureReport {
    systemProperty "allure.issues.tracker.pattern", "https://host/issues/%s"
}
akoval commented 7 years ago

thanks, it works