In my case, the flag flag -s / - nocapture, still did not solve it and dropped the compiler in pdb.
Another reason you might think about this is to use a database such as MySQL as part of your tests so that it is not blocked by another simultaneous process. In my case, I ran a python shell to query the MySQL database through SQL Alchemy and locked the tables. As a result, my nasal tests were dangling - don't run / go out.
I killed python processes that blocked tables and Nose sniffed again
> $ ps auxww | grep python | awk '{print $ 2}' | sudo xargs kill -9
jetpackdata.com Jan 26 '17 at 14:19 2017-01-26 14:19
source share