Moved to django-discover-runner

This commit is contained in:
Jannis Leidel
2012-05-24 00:07:32 +02:00
parent 90966edf97
commit f810c1cf4d
4 changed files with 4 additions and 7 deletions

View File

@@ -1,2 +1,3 @@
test:
django-admin.py test --settings=compressor.test_settings compressor
coverage run --branch --source=compressor `which django-admin.py` test --settings=compressor.test_settings compressor
coverage report --omit=compressor/test*

View File

@@ -17,7 +17,6 @@ else:
INSTALLED_APPS = [
'compressor',
'django_nose',
]
MEDIA_URL = '/media/'
@@ -33,6 +32,6 @@ TEMPLATE_DIRS = (
os.path.join(TEST_DIR, 'test_templates'),
)
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
TEST_RUNNER = 'discover_runner.DiscoverRunner'
SECRET_KEY = "iufoj=mibkpdz*%bob952x(%49rqgv8gg45k36kjcg76&-y5=!"

View File

@@ -1,5 +1,5 @@
flake8
django-nose
django-discover-runner
coverage
unittest2
BeautifulSoup==3.2.0

View File

@@ -1,3 +0,0 @@
[nosetests]
with-coverage=1
cover-package=compressor