diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-28 23:40:23 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-28 23:40:27 +0200 |
commit | 6aed628c22db5b40df591ce41ff38f5b1c19c270 (patch) | |
tree | 5e28a031ebaf0d92fe204aa3fee9b37c91339e19 | |
parent | test: better logging (diff) | |
download | cimple-6aed628c22db5b40df591ce41ff38f5b1c19c270.tar.gz cimple-6aed628c22db5b40df591ce41ff38f5b1c19c270.zip |
add .pytest_cache to .gitignore
It's added by Pytest automatically, but I like doing it explicitly
better.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | test/.gitignore | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,3 +1 @@ /build/ - -*.pyc diff --git a/test/.gitignore b/test/.gitignore new file mode 100644 index 0000000..e6af855 --- /dev/null +++ b/test/.gitignore @@ -0,0 +1,2 @@ +.pytest_cache/ +__pycache__/ |