-
Notifications
You must be signed in to change notification settings - Fork 15
/
conftest.py
76 lines (73 loc) · 2.69 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
import os
import pytest
import django
from django.conf import settings
# We manually designate which settings we will be using in an environment variable
# This is similar to what occurs in the `manage.py`
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dipy_web.test_settings')
# `pytest` automatically calls this function once when tests are run.
def pytest_configure():
settings.DEBUG = False
# settings.configure(
# DEBUG_PROPAGATE_EXCEPTIONS=True,
# DATABASES={'default': {'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': ':memory:'}},
# SITE_ID=1,
# SECRET_KEY='not very secret in tests',
# USE_I18N=True,
# USE_L10N=True,
# INSTALLED_APPS=(
# 'django.contrib.auth',
# 'django.contrib.contenttypes',
# 'django.contrib.sessions',
# 'django.contrib.sites',
# 'django.contrib.messages',
# 'django.contrib.staticfiles',
# 'tests',
# ),
# ROOT_URLCONF='tests.urls',
# MIDDLEWARE_CLASSES=(
# 'django.contrib.sessions.middleware.SessionMiddleware',
# 'django.contrib.messages.middleware.MessageMiddleware',
# ),
# TEMPLATES=[
# {
# 'BACKEND': 'django.template.backends.django.DjangoTemplates',
# 'OPTIONS': {
# 'context_processors': [
# 'django.template.context_processors.debug',
# 'django.template.context_processors.request',
# 'django.contrib.auth.context_processors.auth',
# 'django.contrib.messages.context_processors.messages',
# ],
# 'loaders': [
# 'django.template.loaders.filesystem.Loader',
# 'django.template.loaders.app_directories.Loader'
# ],
# },
# },
# ]
# )
# If you have any test specific settings, you can declare them here,
# e.g.
# settings.PASSWORD_HASHERS = (
# 'django.contrib.auth.hashers.MD5PasswordHasher',
# )
django.setup()
# Note: In Django =< 1.6 you'll need to run this instead
# settings.configure()
@pytest.fixture
def random_user(scope="module"):
from django.contrib.auth.models import User
user = User(username='J-D',
first_name='John',
last_name='Doe',
email='[email protected]',
)
user.set_password('pwd_test2!')
return user
@pytest.fixture
def random_admin_user(scope="module"):
user = random_user()
user.is_superuser = True
return user