VirtualTam's bookmarks
50 bookmarks found
-
-
Bill Bruford and the Beat
2015-03-19 Part 1: ? Part 2: https://www.youtube.com/watch?v=0KCmETeBkEM Part 3: https://www.youtube.com/watch?v=Wl_S5k7ixGY
-
Bill Bruford - Discipline (1982)
2015-03-19 "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"
-
Python: run specific unit tests
2015-02-13 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>