I'm new in python testing and am having some diffiulties choosing between unittest, pytest and nose nose. I'm bulding a test lib that requires : installing a package changing the conf restarting deamons and unsintalling the packages on a linux box. Which test framewok will be the best between thoses three?
At the end of the test I'd like very much to have : n test Suceeded n test Skiped n test failed
Can you please provide some advise?
cheers
That is a very wide question with a lot of resources available. However, I will recommend py.test because getting started is very easy despite having a full set of tools. Nose has a bit more configuration needed than py.test before starting. Unittest is like junit in java, which is not a bad place to start. Anyway, I recommend py.test.