Ho un file chiamato test_web.py contenente una classe TestWeb e molti metodi chiamati test_something ().
Posso eseguire tutti i test della classe in questo modo:
$ nosetests test_web.py
...
======================================================================
FAIL: checkout test
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/me/path/here/test_web.py", line 187, in test_checkout
...
Ma non riesco a eseguire test individuali. Questi mi danno errori "No such test" quando vengono eseguiti nella stessa PWD:
$ nosetests test_web.py:test_checkout
$ nosetests TestWeb:test_checkout
Cosa potrebbe essere sbagliato qui?