|
I have some tests where I pass data to fixtures with marker kwargs. |
Replies: 3 comments
|
what version of python/pytest ? |
|
also please print out the value returned from mark.call on the python cli i get so at first glance your issue doesnt make sense |
|
Finally I've found my mistake in code The case was that for some reasons I had to pop number parameter from kwargs and update other parameter with that that was left in kwargs So there is no error. |

Finally I've found my mistake in code
The case was that for some reasons I had to pop number parameter from kwargs and update other parameter with that that was left in kwargs
So if test failed for some reason and reruns I had already poped number parameter from mark. I did not know that…