From 7f7d2dd00ec48939ea3735c8f55fee56a5aed70a Mon Sep 17 00:00:00 2001 From: David Venable Date: Wed, 4 Sep 2024 14:24:52 -0500 Subject: [PATCH] Adds a .gitignore for Python virtual environments. (#4881) Some projects such as the trace-analytics-sample-app and the current smoke tests use Python. Using Python virtual environments lets developers use these without affecting their local Python environment. Ignore .venv directories which Python virtual environments use. Signed-off-by: David Venable --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 086c830d15..6bf57412d2 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ gradle/tools # Ignore config file generated by test data-prepper-main/src/test/resources/logstash-filter.yaml data-prepper-main/src/test/resources/logstash-conf/logstash-filter.yaml + +# Python virtual environments +.venv