Reputation: 475
The working directory where I run tests are read only and so my cucumber runner fails to create the report directory.
So, is there any way to specify different directory to plugin option?
@CucumberOptions(
features = "resources/features",
glue = "stepdef",
plugin = {"pretty", "json:<custom_path>"} ,
tags = {"@test1"}
)
Here, by 'custom_path' I mean something outside of my package directory where I will have read access.
Upvotes: 0
Views: 2928