Stanislav Seliverstov
Stanislav Seliverstov
@rayjlinden but the best solution is to provide suite labels for behave reports. So please do not close this issue
Environment is not implemented in 2x version.
yep allure still can't do environment( god bless the allure3
@subbro did you retry steps or scenario? Can you share retry logic?
@FerdinandNell can you show test code (only decorators without test body) ?
@Melissa-mao is this issue actual?
@Alpherie @Ljancek @demetrissss @vishuhanda you can add a hook to the environment.py like this: ```python import allure def after_scenario(context, scenario): stdout = context.stdout_capture.getvalue() stderr = context.stderr_capture.getvalue() if stdout: allure.attach(stdout, name="stdout",...
Please do not close this issue. Probably in the next versions I will add captured automaticaly
@Ljancek what is test-suites in behave?
@Ljancek in my opinion parent suite = path to feature file suite = feature file sub suite = scenario/scenario outline is better. my motivation is 1) suites are representation of...