From 0dfbf167553172092412fe2b2f17e57095bef662 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Wed, 14 Aug 2019 15:19:25 +0200 Subject: [PATCH] Make continuous integration integrate well --- .coveragerc | 20 +++++++++----------- tox.ini | 2 +- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/.coveragerc b/.coveragerc index be61ad50..b4ba6476 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,14 +1,12 @@ [run] source = - activity - member - note - theme + app/activity + app/member + app/note omit = - activity/tests/*.py - activity/migrations/*.py - member/tests/*.py - member/migrations/*.py - note/tests/*.py - note/migrations/*.py - theme/tests/*.py \ No newline at end of file + app/activity/tests/*.py + app/activity/migrations/*.py + app/member/tests/*.py + app/member/migrations/*.py + app/note/tests/*.py + app/note/migrations/*.py \ No newline at end of file diff --git a/tox.ini b/tox.ini index dd2f3efe..c8691372 100644 --- a/tox.ini +++ b/tox.ini @@ -28,7 +28,7 @@ deps = pyflakes pylint commands = - flake8 activity member note + flake8 app/activity app/member app/note pylint . [flake8]