forked from divio/django-simple-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests.py
48 lines (39 loc) · 1.16 KB
/
runtests.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
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import sys
INSTALLED_APPS = [
'django.contrib.contenttypes',
'django.contrib.auth',
'django.contrib.sessions',
'django.contrib.admin',
'simple_sso.sso_server',
'simple_sso',
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
ROOT_URLCONF = 'simple_sso.test_urls'
def run_tests():
from django.conf import settings
settings.configure(
INSTALLED_APPS = INSTALLED_APPS,
ROOT_URLCONF = ROOT_URLCONF,
DATABASES = DATABASES,
TEST_RUNNER = 'django.test.simple.DjangoTestSuiteRunner',
SSO_PRIVATE_KEY = 'private',
SSO_PUBLIC_KEY = 'public',
SSO_SERVER = 'http://localhost/server/',
)
# Run the test suite, including the extra validation tests.
from django.test.utils import get_runner
TestRunner = get_runner(settings)
test_runner = TestRunner(verbosity=1, interactive=False, failfast=False)
failures = test_runner.run_tests(['simple_sso'])
return failures
if __name__ == "__main__":
failures = run_tests()
if failures:
sys.exit(bool(failures))