I was trying to run multiple test with different parameters sequentially using data providers, basically the scenario is suppose there are 5 test completing a test flow and
You can use nose-ittr, its a nose extension for supporting parametrized testing.
example:
@ittr(number=[1, 2, 3, 4]) def test_even(self): assert_equal(self.number % 2, 0)