From d3868c3a68523994718e3d8225b05c82362301e8 Mon Sep 17 00:00:00 2001 From: Tomas Date: Fri, 13 Sep 2019 07:31:47 +0200 Subject: [PATCH] Adding ignore W605 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4dac53f..f496481 100644 --- a/.travis.yml +++ b/.travis.yml @@ -84,7 +84,7 @@ install: script: - coverage erase - - if [[ $(python -c 'import sys; print("0" if sys.version_info < (2, 7) else "1")') == "1" ]]; then flake8 --ignore=E501; fi + - if [[ $(python -c 'import sys; print("0" if sys.version_info < (2, 7) else "1")') == "1" ]]; then flake8 --ignore=E501,W605; fi - PYTHONPATH=. coverage run -p example/run_tests.py - PYTHONPATH=. coverage run -p example/run_tests.py example.settings_no_debug after_success: @@ -95,3 +95,4 @@ notifications: email: - goinnn@gmail.com - blag@users.noreply.github.com + - tomasgarzonhervas@gmail.com