default test report location for bitbucket

This commit is contained in:
Greg Gauthier 2023-01-27 14:04:03 +00:00
parent 6b9c72321b
commit d23985a6c0
3 changed files with 11 additions and 10 deletions

1
.gitignore vendored
View File

@ -39,3 +39,4 @@ build/
out/
screenshots/*.png
test-reports/

10
pom.xml
View File

@ -127,11 +127,11 @@
<cucumber.options>
plugin={
"pretty",
"html:target/reports/cucumber-html-report.html",
"json:target/reports/cucumber.json",
"pretty:target/reports/cucumber-pretty.txt",
"usage:target/reports/cucumber-usage.json",
"junit:target/reports/cucumber-results.xml"
"html:test-reports/cucumber-html-report.html",
"json:test-reports/cucumber.json",
"pretty:test-reports/cucumber-pretty.txt",
"usage:test-reports/cucumber-usage.json",
"junit:test-reports/cucumber-results.xml"
},
publish=false,
stepNotifications=true

View File

@ -10,11 +10,11 @@ import org.junit.runner.RunWith;
glue = {"org.example.webtests.steps"},
plugin = {
"pretty",
"html:target/reports/cucumber-html-report.html",
"json:target/reports/cucumber.json",
"pretty:target/reports/cucumber-pretty.txt",
"usage:target/reports/cucumber-usage.json",
"junit:target/reports/cucumber-results.xml"
"html:test-reports/cucumber-html-report.html",
"json:test-reports/cucumber.json",
"pretty:test-reports/cucumber-pretty.txt",
"usage:test-reports/cucumber-usage.json",
"junit:test-reports/cucumber-results.xml"
},
publish = false,
stepNotifications = true