From e511aed934d6895d4348ca1abeb5392ac1612b00 Mon Sep 17 00:00:00 2001 From: Alex Barcelo Date: Wed, 2 Nov 2016 17:24:05 +0100 Subject: [PATCH] removing leftover references to south_migrations folder --- .coveragerc | 1 - .pylintrc | 2 +- .travis.yml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.coveragerc b/.coveragerc index 36bd2d5c..8443e99c 100644 --- a/.coveragerc +++ b/.coveragerc @@ -4,7 +4,6 @@ branch = True include = helpdesk/* omit = - *helpdesk/south_migrations/* *helpdesk/migrations/* [report] diff --git a/.pylintrc b/.pylintrc index 6d986bd6..70492acb 100644 --- a/.pylintrc +++ b/.pylintrc @@ -9,7 +9,7 @@ # Add files or directories to the blacklist. They should be base names, not # paths. -ignore=CVS,migrations,south_migrations +ignore=CVS,migrations # Pickle collected data for later comparisons. persistent=yes diff --git a/.travis.yml b/.travis.yml index a15cdce7..89666d87 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ install: - pip install -q -r requirements.txt before_script: - - "pep8 --exclude=migrations,south_migrations --ignore=E501 helpdesk" + - "pep8 --exclude=migrations --ignore=E501 helpdesk" script: - coverage run --source='.' quicktest.py helpdesk