TestWeb 클래스와 test_something ()과 같은 많은 메서드를 포함하는 test_web.py라는 파일이 있습니다.
클래스의 모든 테스트를 다음과 같이 실행할 수 있습니다.
$ 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
...
하지만 개별 테스트를 실행할 수없는 것 같습니다. 동일한 PWD에서 실행할 때 "No such test"오류가 발생합니다.
$ nosetests test_web.py:test_checkout
$ nosetests TestWeb:test_checkout
여기서 무엇이 잘못 되었을까요?