-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
executable file
·68 lines (61 loc) · 1.61 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from __future__ import unicode_literals
import sys
import django
from django.conf import settings
import logging
log = logging.getLogger()
log.addHandler(logging.StreamHandler())
log.setLevel(10)
import traceback
def log_traceback(ex, ex_traceback=None):
if ex_traceback is None:
ex_traceback = ex.__traceback__
tb_lines = [ line.rstrip('\n') for line in
traceback.format_exception(ex.__class__, ex, ex_traceback)]
exception_logger.log(tb_lines)
if __name__ == '__main__':
settings.configure(
DEBUG = True,
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
},
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'shopify_sync',
),
MIDDLEWARE_CLASSES = (),
ROOT_URLCONF = 'shopify_sync.tests.urls',
USE_TZ = True,
SHOPIFY_APP_API_SECRET = 'hush',
LOG = log,
LOGGING = {
'version': 1,
'filters': {
'require_debug_true': {
'()': 'django.utils.log.RequireDebugTrue',
}
},
'handlers': {
'console': {
'level': 'DEBUG',
'filters': ['require_debug_true'],
'class': 'logging.StreamHandler',
}
},
# 'loggers': {
# 'django.db.backends': {
# 'level': 'DEBUG',
# 'handlers': ['console'],
# }
# }
}
)
django.setup()
from django.test.runner import DiscoverRunner
test_runner = DiscoverRunner()
failures = test_runner.run_tests(['shopify_sync'])
if failures:
sys.exit(failures)