1,513 changes: 1,513 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ comment:
require_changes: no

ignore:
- */management/*
- */__init__*
- */test*
- */wsgi*
- */middleware*
- */version*
- */migrations*
- */search_indexes*
- */management/*
- */context_processors*
- geonode/qgis_server/*
- geonode/contrib/*
- geonode/upload/*
4 changes: 1 addition & 3 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,9 +957,7 @@ def run_tests(options):
Executes the entire test suite.
"""
if options.get('coverage'):
prefix = 'coverage run --branch --source=geonode \
--omit="*/management/*,*/__init__*,*/test*,*/wsgi*,*/version*,\
*/search_indexes*,*/migrations*,*/context_processors*,*/qgis_server/*"'
prefix = 'coverage run --branch --source=geonode'
else:
prefix = 'python'
local = options.get('local', 'false') # travis uses default to false
Expand Down