I'm trying to start nosetests in programmatic way from my script
import nose nose.main()
or
import nose result = nose.run()
and it doesn't recognize my tests , when I use :
import subprocess subprocess.call('c:\somePath\nosetests-2.7.exe -w C:\MyProject -v -s ')
it works , my question is can I config somewhere nose.run() or nose.main() to use nosetests-2.7.exe