gitignore includes cover, mocks and vscode related dirs

Additional entries for the .gitignore to clean up status results.
cover and MagicMock directories are transient and results of our
coverage measurement and testing procedures.

.devcontainer and .vscode are created as part of VScode workflow.

Neither should be included in codebase and as such only add noise
to the 'git status' report.

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>
Change-Id: I6c22770d19f465a5fe54a43d99886a048ab1fde9
This commit is contained in:
Jiri Podivin 2021-05-21 08:50:50 +02:00
parent f6036f1c3f
commit ab90fcdb86
1 changed files with 6 additions and 0 deletions

6
.gitignore vendored
View File

@ -42,6 +42,8 @@ install-minion.log
nosetests.xml
.testrepository
.stestr/*
cover/*
MagicMock/*
# Translations
*.mo
@ -62,3 +64,7 @@ releasenotes/build
# generated config samples
*.conf.sample
# VSCode
.vscode/*
.devcontainer/*