diff options
author | Lily Ballard <lily@ballards.net> | 2024-10-20 22:06:04 -0700 |
---|---|---|
committer | Lily Ballard <lily@ballards.net> | 2024-10-20 22:08:35 -0700 |
commit | 4308ec1ae47d36af727423efec536327abec50e7 (patch) | |
tree | 55a726e127a9a0d0b84a4291c4497bba4d9e7adf | |
parent | 068f4b147d589f2a219ba917537b53a56089c1ba (diff) |
gitignore: ignore *.pyc files
Running our installcheck test suite creates these files.
Change-Id: I97ac8f1aa165a491c55dff6b48486db17b75443b
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
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 |