From 4308ec1ae47d36af727423efec536327abec50e7 Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Sun, 20 Oct 2024 22:06:04 -0700 Subject: [PATCH] gitignore: ignore *.pyc files Running our installcheck test suite creates these files. Change-Id: I97ac8f1aa165a491c55dff6b48486db17b75443b --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 0ae2c44a2..15c871218 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,6 @@ buildtime.bin # Rust build files when using Cargo (not actually supported for building but it spews the files anyway) /target/ + +# Python compiled files from the test suite +*.pyc