From fd5edb70cde1c5c612bf1425eb5a57c1b4d7a934 Mon Sep 17 00:00:00 2001 From: Phoevos Kalemkeris Date: Tue, 17 Dec 2024 16:06:54 +0000 Subject: [PATCH] fix: Update .gitignore Update .gitignore to ignore the following files created/generated during development and/or when running the tests: * '.env' * '.ruff_cache/' * 'coverage_reports/' * 'cms-users.db' * 'medcat_deid_model_apis.json' * 'testapis.json' Signed-off-by: Phoevos Kalemkeris --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index f4d7923..844377c 100644 --- a/.gitignore +++ b/.gitignore @@ -48,6 +48,7 @@ coverage.xml *.cover .hypothesis/ .pytest_cache/ +coverage_reports/ # Translations *.mo @@ -90,6 +91,7 @@ venv/ ENV/ env.bak/ venv.bak/ +.env # Spyder project settings .spyderproject @@ -104,6 +106,9 @@ venv.bak/ # mypy .mypy_cache/ +# Ruff cache +.ruff_cache/ + .idea/* app/model/* @@ -129,4 +134,9 @@ htmlcov tests/resources/model/.gitkeep +# Files generated by the tests +cms-users.db +medcat_deid_model_apis.json +testapis.json + .DS_Store