mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-21 17:04:21 +01:00
adding a decorator to disable slow tests
if env var LCNOSLOW=yes, the slowest tests are disable
This commit is contained in:
parent
f967630043
commit
52557afa6a
@ -6,3 +6,11 @@ def travis_disabled(f):
|
||||
return _decorator
|
||||
else:
|
||||
return f
|
||||
|
||||
def slow_disabled(f):
|
||||
def _decorator(f):
|
||||
print 'test has been disabled by env var LCNOSLOW'
|
||||
if 'LCNOSLOW' in os.environ and os.environ['LCNOSLOW'] == 'yes':
|
||||
return _decorator
|
||||
else:
|
||||
return f
|
||||
|
Loading…
Reference in New Issue
Block a user