-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtests.py
More file actions
executable file
·77 lines (60 loc) · 1.79 KB
/
tests.py
File metadata and controls
executable file
·77 lines (60 loc) · 1.79 KB
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
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
# coding: utf-8
import os
import sys
from django import VERSION as DJANGO_VERSION
from django.conf import settings
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
class DisableMigrations:
"""
Migration disable class
"""
def __contains__(self, item):
return True
def __getitem__(self, item):
return 'no_migrations_here' if DJANGO_VERSION < (1, 11) else None
TESTS_SETTINGS = {
'DEBUG': False,
'ROOT_URLCONF': 'django_ulogin.tests.urls',
'MIGRATION_MODULES': DisableMigrations(),
'MIDDLEWARE_CLASSES': (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
),
'INSTALLED_APPS': (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django_ulogin',
),
'PASSWORD_HASHERS': [
'django.contrib.auth.hashers.MD5PasswordHasher',
],
'DATABASES': {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
},
'TEMPLATES': [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
},
]
}
if DJANGO_VERSION >= (1, 10):
TESTS_SETTINGS['MIDDLEWARE'] = TESTS_SETTINGS.pop('MIDDLEWARE_CLASSES')
settings.configure(**TESTS_SETTINGS)
def main():
from django.test.utils import get_runner
import django
if hasattr(django, 'setup'):
django.setup()
find_pattern = 'django_ulogin.tests'
test_runner = get_runner(settings)(verbosity=2, interactive=True)
failed = test_runner.run_tests([find_pattern])
sys.exit(failed)
if __name__ == '__main__':
main()