From 01cce04c2e6d5364869344733d4beab54f60caba Mon Sep 17 00:00:00 2001 From: Masayuki Igawa Date: Mon, 27 Jun 2016 12:59:37 +0900 Subject: [PATCH] Add __pycache__ to .gitignore This commit adds __pycache__ to .gitignore. __pycache__ directories are made by python 3 execution and we check un-ignored files after the tests in the gate jobs. And a lot of __pycache__ directories are listed in the logs. However, it is expected directories so it should be ignored. Change-Id: I4cfd3475dd2fe1e5b586a28296983a3914236d70 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5b87cece89..8e0c3a68a5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ AUTHORS ChangeLog *.pyc +__pycache__/ etc/tempest.conf etc/tempest.conf.sample etc/logging.conf