/functional_tests/support/ctx/mod_import_skip.py

https://bitbucket.org/jpellerin/nose/ · Python · 9 lines · 6 code · 3 blank · 0 comment · 0 complexity · 51903f964f5b5415c934d5506ca97a14 MD5 · raw file

  1. from nose import SkipTest
  2. raise SkipTest("Don't run me")
  3. def test():
  4. assert False, "Should not be run"
  5. def test2():
  6. assert False, "Should not be run"