From 3f978295f70e3f1117d5e4c8a4ea7ed6fc9a85ed Mon Sep 17 00:00:00 2001 From: opacam Date: Fri, 5 Jul 2019 15:40:30 +0200 Subject: [PATCH 1/3] [gitignore] Add test/coverage entries to gitignore --- .gitignore | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6a8964aa0f..2b5c913465 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,14 @@ __pycache__/ #idea/pycharm .idea/ -.tox \ No newline at end of file + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.pytest_cache/ From 3a247a800a223cd34ea9825c07ce0915abba6dc2 Mon Sep 17 00:00:00 2001 From: opacam Date: Fri, 5 Jul 2019 16:59:34 +0200 Subject: [PATCH 2/3] [gitignore] Add `testapps/build/` to gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2b5c913465..7ec4b3b148 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,6 @@ nosetests.xml coverage.xml *.cover .pytest_cache/ + +# testapp's build folder +testapps/build/ From 4cbfb0c0a0a8b8fade5260935b007bd6a2bada5a Mon Sep 17 00:00:00 2001 From: opacam Date: Fri, 5 Jul 2019 17:05:12 +0200 Subject: [PATCH 3/3] [gitignore] Add `.directory` to gitignore Those files are autogenerated by `Dolphin`, the KDE's file manager --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7ec4b3b148..8b3efa2f6f 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,6 @@ coverage.xml # testapp's build folder testapps/build/ + +# Dolphin (the KDE file manager autogenerates the file `.directory`) +.directory