Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #The base test
  2.  
  3. TestLogin(TestFlow):
  4. #do login_test_stuff_here
  5.  
  6. #Another test in the same module
  7.  
  8. TestAccountDetails(TestLogin)
  9. #do account_details_test_stuff_here
  10.  
  11. ...
  12.  
  13. def test_big_download():
  14. import urllib
  15. # commence slowness...
  16.  
  17. test_big_download.slow = 1
  18.  
  19. $ nosetests -a '!slow'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement