-
Notifications
You must be signed in to change notification settings - Fork 70
/
conftest.py
executable file
·98 lines (88 loc) · 3.22 KB
/
conftest.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import django
from django.conf import settings
def pytest_configure():
import sys
try:
import django # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" django library is needed to run test suite")
print(" you can install it with 'pip install django'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
try:
import django_select2 # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" django_select2 library is needed to run test suite")
print(" you can install it with 'pip install django_select2'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
try:
import rarfile # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" rarfile library is needed to run test suite")
print(" you can install it with 'pip install rarfile'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
try:
import zeep # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" zeep library is needed to run test suite")
print(" you can install it with 'pip install zeep'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
try:
import dbfread # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" dbfread library is needed to run test suite")
print(" you can install it with 'pip install dbfread'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
try:
import progress # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" progress library is needed to run test suite")
print(" you can install it with 'pip install progress'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
try:
import six # NOQA
except ImportError:
print("Error: missing test dependency:")
print(" six library is needed to run test suite")
print(" you can install it with 'pip install six'")
print(" or use tox to automatically handle test dependencies")
sys.exit(1)
settings.configure(
INSTALLED_APPS=[
'fias',
],
MIDDLEWARE_CLASSES=(
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
),
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'db.sqlite',
},
'fias': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'fias.sqlite',
},
},
SECRET_KEY='key',
ROOT_URLCONF='tests.urls',
FIAS_DATABASE_ALIAS='fias',
DATABASE_ROUTERS=['fias.routers.FIASRouter'],
DEBUG=True,
TEMPLATE_DEBUG=True,
)