Moved to django-discover-runner.

This commit is contained in:
Jannis Leidel 2012-05-23 23:50:32 +02:00
parent f7378df802
commit d2f595ce82
5 changed files with 12 additions and 8 deletions

View file

@ -13,7 +13,8 @@ install:
before_script:
- flake8 dbtemplates --ignore=E501
script:
- django-admin.py test dbtemplates
- coverage run --branch --source=dbtemplates `which django-admin.py` test dbtemplates
- coverage report --omit="dbtemplates/test*,dbtemplates/migrations*"
env:
- DJANGO=1.3.1
- DJANGO=1.4

View file

@ -21,7 +21,6 @@ INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'dbtemplates',
'django_nose',
]
TEMPLATE_LOADERS = (
@ -30,4 +29,4 @@ TEMPLATE_LOADERS = (
'dbtemplates.loader.Loader',
)
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
TEST_RUNNER = 'discover_runner.DiscoverRunner'

View file

@ -1,6 +1,14 @@
Changelog
=========
v1.3.1 (2012-05-23)
-------------------
* Minor release to move away from nose again and use own
`django-discover-runner`_.
.. _`django-discover-runner`: http://pypi.python.org/pypi/django-discover-runner
v1.3 (2012-05-07)
-----------------

View file

@ -1,3 +1,3 @@
flake8
django-nose
django-discover-runner
coverage

View file

@ -11,7 +11,3 @@ upload-dir = docs/_build/html
[upload_sphinx]
upload-dir = docs/_build/html
[nosetests]
with-coverage=1
cover-package=dbtemplates