Skip to content

Commit fd5edb7

Browse files
committed
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 <[email protected]>
1 parent f362244 commit fd5edb7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ coverage.xml
4848
*.cover
4949
.hypothesis/
5050
.pytest_cache/
51+
coverage_reports/
5152

5253
# Translations
5354
*.mo
@@ -90,6 +91,7 @@ venv/
9091
ENV/
9192
env.bak/
9293
venv.bak/
94+
.env
9395

9496
# Spyder project settings
9597
.spyderproject
@@ -104,6 +106,9 @@ venv.bak/
104106
# mypy
105107
.mypy_cache/
106108

109+
# Ruff cache
110+
.ruff_cache/
111+
107112
.idea/*
108113

109114
app/model/*
@@ -129,4 +134,9 @@ htmlcov
129134

130135
tests/resources/model/.gitkeep
131136

137+
# Files generated by the tests
138+
cms-users.db
139+
medcat_deid_model_apis.json
140+
testapis.json
141+
132142
.DS_Store

0 commit comments

Comments
 (0)