Maksim Stepanov
Maksim Stepanov
Hi, @kemsky ! Do you define Allure fixtures with AllureBefore or AllureAfter ? If so, do you define steps in them? Do fixtures or steps have parameters? If yes, what...
Ok, thank you for your quick response. How often does the exception occur?
My first impression is that there is a data race somewhere in our code. Does turning off the parallelization help?
Hi! I was able to reproduce the issue with both a 2.5.0 and 2.12.0 (the most recent at the time) versions of `allure-behave` but it appeared in a slightly different...
#### For future contribution: I took a look at how `behave` calls a formatter and environment setup functions. It is poorly documented so the best way to figure it out...
@Rexze001 It's not yet fixed, sorry.
Hi, @EvgenyMarchuk ! If a test has complicated parameters (objects with lots of transitive references, large collections, ORM entities. etc), there might be issues like that. Could you please narrow...
@TonEnfer Could you please show how you parametrize your tests (just one example, with personal data stripped)?
Thank you. It will help me better understand some edgy use cases when our serialization algorithm performs poorly. At the moment, you may use the type formatters API to workaround...
The problem is that given ```csharp [Test] public void Test(T a) { /* ... */ } ``` we can't decide whether to include `a` in the report or not for...