-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
31 lines (26 loc) · 922 Bytes
/
Copy path.gitignore
File metadata and controls
31 lines (26 loc) · 922 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
27
28
29
30
31
__pycache__/
*.py[cod]
*.egg-info/
build/
dist/
.venv/
.ruff_cache/
.pytest_cache/
# Ignore actual books used for testing to prevent IP leaks
testing_facility/books_to_fix/*
!testing_facility/books_to_fix/.gitkeep
testing_facility/top500candidates/*.epub
# The census report lists real titles at absolute library paths; the same
# leak class as the book files above. Untracked 2026-09-15 (forward-only;
# the file stays on disk as the --summary target).
testing_facility/top500candidates/REPORT.md
# test_facility EPUBs stopped being tracked in v0.33.0 (forward-only; 9 of
# the 10 books are commercial and one untracked leak on a public repo is
# one too many). Files stay on disk, out of git.
test_facility/*.epub
# Compiled Java scratch (FastSweep harness)
*.class
# Local virtualenvs (each carries its own auto-generated inner .gitignore,
# which is the only reason they were invisible until now)
venv/
.venv_ci/