Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jedie committed Oct 12, 2011
1 parent 7aec608 commit d07d241
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,4 +1,4 @@
include AUTHORS README.textile MANIFEST.in
include AUTHORS README.creole MANIFEST.in
recursive-include dbpreferences/templates *.html *.css *.js
recursive-exclude * *.pyc
recursive-exclude * *.pyo
22 changes: 22 additions & 0 deletions dbpreferences/tests/run_tests.py
@@ -0,0 +1,22 @@
# coding: utf-8

import os
import sys

if __name__ == "__main__":
os.environ["DJANGO_SETTINGS_MODULE"] = "dbpreferences.tests.test_settings"
import dbpreferences.tests.test_settings

from django.conf import settings
from django.test.utils import get_runner


def runtests():
TestRunner = get_runner(settings)
test_runner = TestRunner(verbosity=1, interactive=True)
failures = test_runner.run_tests(['dbpreferences'])
sys.exit(bool(failures))

if __name__ == "__main__":
# Run this unittest directly
runtests()

0 comments on commit d07d241

Please sign in to comment.