-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dmarcelino/runtests
Runtests
- Loading branch information
Showing
2 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
language: python | ||
python: | ||
- "3.6" | ||
env: | ||
- DJANGO="Django>=2.0,<2.1" | ||
matrix: | ||
include: | ||
- env: DJANGO="Django>=2.0,<2.1" | ||
- env: DJANGO="Django>=1.11,<1.12" | ||
- env: DJANGO="Django>=1.10,<1.11" | ||
- env: DJANGO="Django>=1.9,<1.10" | ||
- env: DJANGO="Django>=1.8,<1.9" | ||
- python: "3.5" | ||
- python: "3.4" | ||
- python: "2.7" | ||
env: DJANGO="Django>=1.11,<1.12" | ||
install: | ||
- pip install --upgrade -q pip setuptools | ||
- pip install -q $DJANGO | ||
- pip install -e . | ||
script: | ||
- ./runtests.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/usr/bin/env python | ||
import os | ||
import sys | ||
|
||
import django | ||
from django.conf import settings | ||
from django.core.management import call_command | ||
|
||
|
||
def runtests(): | ||
if not settings.configured: | ||
# Choose database for settings | ||
DATABASES = { | ||
'default': { | ||
'ENGINE': 'django.db.backends.sqlite3', | ||
'NAME': ':memory:' | ||
} | ||
} | ||
|
||
# Configure test environment | ||
settings.configure( | ||
DATABASES=DATABASES, | ||
INSTALLED_APPS=( | ||
'django.contrib.contenttypes', | ||
'django.contrib.auth', | ||
'django.contrib.sites', | ||
'django.contrib.sessions', | ||
'django.contrib.messages', | ||
'django.contrib.admin.apps.SimpleAdminConfig', | ||
'django.contrib.staticfiles', | ||
|
||
'sameas', | ||
), | ||
ROOT_URLCONF='', # tests override urlconf, but it still needs to be defined | ||
MIDDLEWARE_CLASSES=( | ||
'django.contrib.sessions.middleware.SessionMiddleware', | ||
'django.middleware.common.CommonMiddleware', | ||
'django.middleware.csrf.CsrfViewMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
'django.contrib.messages.middleware.MessageMiddleware', | ||
), | ||
TEMPLATES = [ | ||
{ | ||
'BACKEND': 'django.template.backends.django.DjangoTemplates', | ||
'DIRS': [], | ||
'APP_DIRS': True, | ||
'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', | ||
], | ||
}, | ||
}, | ||
], | ||
) | ||
|
||
if django.VERSION >= (1, 7): | ||
django.setup() | ||
failures = call_command( | ||
'test', 'sameas', interactive=False, failfast=False, verbosity=2) | ||
|
||
sys.exit(bool(failures)) | ||
|
||
|
||
if __name__ == '__main__': | ||
runtests() | ||
|