1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-05-30 23:58:05 +02:00
ldapcherry/tests/disable.py
kakwa 52557afa6a adding a decorator to disable slow tests
if env var LCNOSLOW=yes, the slowest tests are disable
2016-07-29 07:34:58 +02:00

17 lines
459 B
Python

import os
def travis_disabled(f):
def _decorator(f):
print 'test has been disabled on travis'
if 'TRAVIS' in os.environ and os.environ['TRAVIS'] == 'yes':
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