VirtualTam's bookmarks

  1. "The gig I have as the drummer in King Crimson is one of the few gigs in rock 'n' roll where it's even remotely possible to play anything in 17/16 and stay in a decent hotel"

  2. Given your unittests are in the tests directory:

     1# run a specific test module
     2python -m unittest tests.<module>
     3 
     4# run a specific test suite
     5python -m unittest tests.<module>.<class>
     6 
     7# run a specific test
     8python -m unittest tests.<module>.<class>.<test>
     9 
    10# run tests matching a given pattern
    11python -m unittest discover -s tests -p <pattern>