From a module, run few tests in parallel and few in serial #944
sankethkamathk
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Without running pytest command more than once, is it possible to run few tests in parallel and few in serial
#test_abc.py
def test_first():
pass
def test_second():
pass # say this test take 1 min
def test_third()
pass # say this test takes 5 mins
here, i want to run test_second test_third in parallel
Beta Was this translation helpful? Give feedback.
All reactions