-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
26 lines (24 loc) · 901 Bytes
/
.gitignore
File metadata and controls
26 lines (24 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
__pycache__/
*.pyc
.coverage
coverage.json
htmlcov/
.mypy_cache/
.ruff_cache/
.pytest_cache/
build/
dist/
*.egg-info/
# Obsolete Phase 1 research partial — kept on disk as reference but
# never tracked. Flagged in PHASE1_RUNTIME_AUDIT.md (F-018). Remove
# this line if you want to bring the file back into version control.
research_data/vibe_research_part1_tier1a.md
# PH-23.2 (additive 2026-05-05): the previous `Users/` gitignore
# entry was removed once tests/conftest.py landed a session-scope
# finalizer + cleanup fixture (`detect_absolute_path_leaks` +
# `remove_stale_test_debris`). The conftest now both deletes
# the existing audit-cycle debris at session start AND fails any
# session that leaves new leak debris behind. Hiding the leak via
# .gitignore was a workaround; the conftest is the real fix and
# we want any future leaks to surface loudly rather than be
# silently absorbed.