I am using Behave in Python to test a web application. My test suite is working correctly, but I cannot create a unit report.
Here is my behave.ini file:
[behave] junit=true format=pretty
I start only with this command: behave
After starting, the test result is printed on the console, but the report is not generated.
1 feature passed, 3 failed, 0 skipped 60 scenarios passed, 5 failed, 0 skipped 395 steps passed, 5 failed, 5 skipped, 0 undefined Took 10m17.149s
What can I do?
source share