From 862660f44f48a825d15b11ee6706f6ce9b105dd6 Mon Sep 17 00:00:00 2001 From: Dustin Schoenbrun Date: Fri, 26 Oct 2018 15:33:13 -0400 Subject: [PATCH] Add .venv to .gitignore .venv was not a part of the .gitignore file and was showing up when creating a virtual environment for developing with Jenkins Job Builder. This patch adds .venv to the .gitignore file. Change-Id: Ie32384290b9127759591a695cdfb5b0d6e740eb1 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index fea9c5474..6f1188022 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ testr_subunit_log __pycache__ /.stestr settings.json +.venv