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: I6c22770d19f465a5fe54a43d99886a048ab1fde9changes/06/792506/1
parent
f6036f1c3f
commit
ab90fcdb86
|
@ -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/*
|
||||
|
|
Loading…
Reference in New Issue