-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
77 lines (68 loc) · 2.42 KB
/
Copy path.gitignore
File metadata and controls
77 lines (68 loc) · 2.42 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# apxs / libtool build artifacts
*.o
*.lo
*.la
*.slo
*.so
.libs/
# Editor/scratch
*.swp
*~
.DS_Store
.vscode/
# Python test framework (M11.4+) — venv + pytest caches + egg-info
# + per-run reports are per-box artifacts that don't belong in the
# repo. .pytest_cache/ pattern is unanchored: pytest writes one
# wherever its cwd was when invoked, so the repo-root copy and the
# tests/-relative copy are both caught.
tests/.venv/
.pytest_cache/
tests/*.egg-info/
tests/reports/
__pycache__/
# Hypothesis property-based testing cache. Created wherever pytest is
# invoked from (repo root or tests/), holds saved failure examples +
# Unicode DB cache. Local working state, not repo content.
.hypothesis/
# AI-tool workspace markers / settings — per-user state from
# Claude Code, OpenAI Codex, etc. Not project content meant for
# the team.
.claude/
.codex
# Playwright MCP server scratch directory — DOM snapshots and
# console-log dumps from any browser-automation session that ran
# from this directory. Pure session breadcrumbs; no replay value
# beyond the moment they were captured.
.playwright-mcp/
# pytest-playwright screenshot/video artifacts — gitignored; CI
# uploads as artifacts on failure.
tests/test-results/
# Fuzz harness build artifacts + per-run corpus. The corpus grows on
# every fuzz run with newly-discovered inputs; we don't track it in
# git. seed_corpus.py regenerates a starter set any time.
tests/fuzz/fuzz_cookie
tests/fuzz/fuzz_robots
tests/fuzz/corpus/
tests/fuzz/corpus-robots/
# LibFuzzer also drops crash-* files next to the binary on a finding
crash-*
leak-*
timeout-*
slow-unit-*
tests/bench/results/
# Backup of the previous active vendor file produced by
# tools/refresh-bot-directory.py and refresh-top-user-agents.py.
# Operator-local rollback artifacts; the committed .json + .default.json
# are the canonical sources.
vendor/bot-directory.json.prev
vendor/top-user-agents.json.prev
# Operator-managed overlay files. Loaded last (after upstream + the
# committed .builtin overlay) by both the build-time codegen and the
# refresh scripts; entries here win on slug collision. Optional — an
# operator who doesn't want custom additions can skip the file
# entirely. NOT committed: this is for deployment-specific bots,
# internal scrapers, custom monitoring tools, or named entries an
# operator wants to override locally.
vendor/bot-directory.local.json
vendor/top-user-agents.local.json
vendor/verified-bots.local.json