Skip to content

Instantly share code, notes, and snippets.

View jbzdak's full-sized avatar

Jacek Bzdak jbzdak

View GitHub Profile
@npryce
npryce / wip.py
Created May 28, 2011 20:17
Decorator to mark tests as work in progress for Python's Nose testing framework
from functools import wraps
from nose.plugins.attrib import attr
from nose.plugins.skip import SkipTest
def fail(message):
raise AssertionError(message)
def wip(f):
@wraps(f)