Skip to content

Commit

Permalink
Add the infrastructure for test running
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Jul 17, 2012
1 parent 5e3350d commit b9b7738
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 0 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
@@ -0,0 +1,3 @@
# For development/testing
Django==1.4
django-nose==1.1
48 changes: 48 additions & 0 deletions runtests.py
@@ -0,0 +1,48 @@
#!/usr/bin/env python
import sys
from os.path import dirname, abspath

sys.path.insert(0, dirname(abspath(__file__)))

from django.conf import settings

if not settings.configured:
settings.configure(
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
},
},
INSTALLED_APPS=[
'privileges',
'tests',
],
ROOT_URLCONF='',
DEBUG=False,
SITE_ID=1,
TEMPLATE_DEBUG=True,
)

from django_nose import NoseTestSuiteRunner


def runtests(*test_args, **kwargs):
if not test_args:
test_args = ['tests']

kwargs.setdefault('interactive', False)

test_runner = NoseTestSuiteRunner(**kwargs)

failures = test_runner.run_tests(test_args)
sys.exit(failures)

if __name__ == '__main__':
from optparse import OptionParser
parser = OptionParser()
parser.add_option('--verbosity', dest='verbosity', action='store', default=1, type=int)
parser.add_options(NoseTestSuiteRunner.options)
(options, args) = parser.parse_args()

runtests(*args, **options.__dict__)
Empty file added tests/__init__.py
Empty file.
Empty file added tests/privileges/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions tests/privileges/tests.py
@@ -0,0 +1,5 @@
from django.test import TestCase


class Test(TestCase):
pass

0 comments on commit b9b7738

Please sign in to comment.