Skip to content

Commit f160112

Browse files
committed
chore(gitignore): add pytest-cov, htmlcov, and vim swap patterns
Round out the gitignore with a few additional dev-artifact patterns not previously covered: - coverage.xml + htmlcov/ -- pytest-cov XML/HTML report outputs - .pytest_cache/ -- pytest's cache; previously self-ignored via its own .gitignore but more discoverable at the repo root - *.swp / *.swo -- vim swap files No project-specific additions; just generic dev-artifact coverage. Signed-off-by: lelia <2418071+lelia@users.noreply.github.com>
1 parent f4d3489 commit f160112

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
*.pyc
33
__pycache__/
44
.coverage
5+
coverage.xml
6+
htmlcov/
7+
.pytest_cache/
58

69
# --- Virtual environments ---
710
venv/
@@ -20,6 +23,8 @@ dist/
2023

2124
# --- Editor / IDE ---
2225
.idea/
26+
*.swp
27+
*.swo
2328

2429
# --- OS ---
2530
.DS_Store

0 commit comments

Comments
 (0)