Imagine that I have test/unit/...
which are safe to run in parallel and test/functional/...
which cannot be run in parallel yet.
Is there an easy way to convince pytest to run the functional
ones sequentially? Consider that we are talking about a big number of tests so altering each test function/method would be very noisy.
At this moment we run tests with marker filters so mainly we run them separated. Still, I am looking for a solution for removing the need to run them separated.