Skip to content
Snippets Groups Projects
Commit a1e31e3e authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

added coverage reports

parent 1d5fcc2a
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -31,6 +31,7 @@ ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django_nose',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
......@@ -119,3 +120,10 @@ USE_TZ = True
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_URL = '/static/'
# Test coverage setup
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
NOSE_ARGS = [
'--with-coverage',
'--cover-package=data,analytics'
]
django>=1.10
django-nose>=1.4
coverage>=4.2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment