Merge "Add ZAQAR_TEST_EVERYTHING to enable all tests"
This commit is contained in:
commit
28661fbe53
@ -22,9 +22,16 @@ import six
|
|||||||
import testtools
|
import testtools
|
||||||
|
|
||||||
|
|
||||||
SKIP_SLOW_TESTS = os.environ.get('ZAQAR_TEST_SLOW') is None
|
RUN_ALL_TESTS = os.environ.get('ZAQAR_TEST_EVERYTHING')
|
||||||
SKIP_MONGODB_TESTS = os.environ.get('ZAQAR_TEST_MONGODB') is None
|
|
||||||
SKIP_REDIS_TESTS = os.environ.get('ZAQAR_TEST_REDIS') is None
|
|
||||||
|
def _test_variable_set(variable):
|
||||||
|
return os.environ.get(variable, RUN_ALL_TESTS) is None
|
||||||
|
|
||||||
|
|
||||||
|
SKIP_SLOW_TESTS = _test_variable_set('ZAQAR_TEST_SLOW')
|
||||||
|
SKIP_MONGODB_TESTS = _test_variable_set('ZAQAR_TEST_MONGODB')
|
||||||
|
SKIP_REDIS_TESTS = _test_variable_set('ZAQAR_TEST_REDIS')
|
||||||
|
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
|
Loading…
x
Reference in New Issue
Block a user