I tried to run nose from my project root folder:
nosetests a/b/c.py:dd.test_e
I expect nose to only run the single test dd.test_e defined in c.py. However, nose does not stop after running this test. It keeps going and working on some other things (I didn't let it finish since it takes too much resource of my computer).
I tried to run nose from my project root folder:
nosetests a/b/c.py:dd.test_e
I expect nose to only run the single test
dd.test_e
defined inc.py
. However, nose does not stop after running this test. It keeps going and working on some other things (I didn't let it finish since it takes too much resource of my computer).If I change directory before running the tests:
nose
stops after runningdd.test_e
.