From c7d70887c2d540b4e859b9622202e333b827af72 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 6 Feb 2024 20:54:30 +0000 Subject: [PATCH] Fix paths to tests temporary files in `.gitignore` Untracked files are much more visible in vscode than in my command line (or I had global gitignores), so let's fix this. --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6721047..ae71a96 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,6 @@ /doc/doctrees/ /doc/html/ /pyxattr.egg-info -/test/__pycache__/ -/test/*.pyc +/tests/__pycache__/ +/tests/*.pyc /*.so -- 2.39.5