From 0985a1875c3c8d2d76a011bd81c9f60f9d06f6e0 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 7 Aug 2019 12:42:36 -0400 Subject: [PATCH] last config try --- .codecov.yml | 4 ---- setup.cfg | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.codecov.yml b/.codecov.yml index 8c68df67..b677f04b 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -25,10 +25,6 @@ coverage: # threshold: 50% # allow this much decrease on patch changes: false -ignore: - - "pytorch_lightning/utilities/arg_parse.py" - - "raise *" - parsers: gcov: branch_detection: diff --git a/setup.cfg b/setup.cfg index 5b21c683..9e723aad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,6 +31,7 @@ exclude_lines = print(traceback.print_exc()) return * raise Exception + raise * warnings print raise RuntimeError @@ -42,6 +43,7 @@ omit = pytorch_lightning/callbacks/pt_callbacks.py tests/test_models.py pytorch_lightning/testing_models/lm_test_module.py + pytorch_lightning/utilities/arg_parse.py [flake8] ignore = E731,W504,F401,F841