Valery Moiseev
Results
2
comments of
Valery Moiseev
> Just wrote this patch; I think it works. It would be nice to have this provided out of the box. (It doesn't actually solve my particular use-case, as I...
@ngyingkai It is necessary to put the above piece of code in conftest.py And mark the tests themselves ```python @pytest.mark.serial def test_my_awesome_serial(): pass def my_parallel_test(): pass ``` And run ```bash...