Skip to content

Commit 750b488

Browse files
committed
chore: remove test, dev, and generated artifacts
1 parent 106b32a commit 750b488

50 files changed

Lines changed: 92 additions & 6315 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 0 additions & 26 deletions
This file was deleted.

.gitignore

Lines changed: 92 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
############################
12
# Python
3+
############################
24
__pycache__/
35
*.py[cod]
46
*$py.class
@@ -8,89 +10,149 @@ venv/
810
dist/
911
build/
1012

11-
# Extracted secrets
13+
############################
14+
# Extracted secrets / outputs
15+
############################
1216
outputs/
1317
loot/
1418
*.json
1519
*.csv
1620
!tests/fixtures/*.json
1721

22+
############################
1823
# Jenkins files (test artifacts)
24+
############################
1925
jenkins_files/
2026
master.key
2127
hudson.util.Secret
2228
credentials.xml
2329
*.xml
2430
!tests/fixtures/*.xml
2531

26-
# Docker volumes
32+
############################
33+
# Docker volumes & artifacts
34+
############################
2735
docker/jenkins_home/
36+
docker/jenkins_files/
37+
docker/output/
38+
docker/logs/
39+
.dockerignore
2840

41+
############################
2942
# Testing
43+
############################
3044
.pytest_cache/
3145
.coverage
3246
htmlcov/
47+
simple_test.py
48+
test_*.py
49+
pytest.ini
50+
test_output/
51+
test_results/
52+
test_logs/
3353

34-
# IDEs
35-
.zencode
54+
############################
55+
# IDEs / editors
56+
############################
57+
.zencode
3658
.vscode/
3759
.idea/
3860
*.swp
3961

62+
############################
4063
# Binary builds
64+
############################
4165
dist/
4266
build/
4367
*.spec
4468
*.sha256
4569

70+
############################
4671
# OS
72+
############################
4773
.DS_Store
4874
Thumbs.db
4975

50-
# Type checking
76+
############################
77+
# Type checking / linting
78+
############################
5179
.mypy_cache/
52-
53-
# Ruff
80+
mypy_*.txt
5481
.ruff_cache/
5582

56-
# Temporary files
83+
############################
84+
# Generated logs / reports
85+
############################
86+
*.txt
87+
check_output.txt
88+
fresh_errors.txt
89+
detailed_errors.txt
90+
91+
############################
92+
# Verification / QA scripts (internal only)
93+
############################
94+
verify_*.py
95+
verify_phase*.py
96+
verify_updates.py
97+
verify_forensics.py
98+
verify_performance.py
99+
verify_code.py
100+
101+
############################
102+
# Analysis / experiments
103+
############################
104+
phase2_summary.py
105+
summarize_errors.py
106+
list_name_errors.py
107+
read_samples.py
108+
read_skipped_lines.py
109+
list_name_errors.py
110+
111+
############################
112+
# Generator / extractor dev tools
113+
############################
114+
extractor_*.py
115+
write_ext.py
116+
write_extractors.py
117+
create_extractors.py
118+
extractor_writer_part*.py
119+
120+
############################
121+
# Dev / scratch utilities
122+
############################
123+
copy_*.py
124+
gen.py
125+
groovy_analyzer_fixed.py
57126
create_dirs.py
127+
temp_*.py
128+
tmp_*.py
129+
scratch_*.py
58130

59-
# Docker test artifacts
60-
docker/jenkins_files/
61-
docker/output/
62-
docker/logs/
63-
131+
############################
64132
# Phase 7 Development Scripts & Artifacts
65-
# All fix scripts created during development
133+
############################
66134
fix_*.py
67135
analyze_mypy.py
68-
69-
# Batch files for testing
70-
*.bat
71-
!docker/build_and_test.bat
72-
73-
# Phase 7 status documentation (internal use only)
74136
phase7_*.md
75137
phase7_testing_status.md
76138

139+
############################
77140
# Development helper scripts
141+
############################
78142
count_*.py
79143
check_*.py
80144
get_*.py
81145
run_*.py
82146
show_*.py
83147

84-
# Test artifacts from development
85-
test_output/
86-
test_results/
87-
test_logs/
88-
89-
# Temporary Python files
90-
temp_*.py
91-
tmp_*.py
92-
scratch_*.py
93-
148+
############################
94149
# Local development configuration
150+
############################
95151
.env.local
96152
local_config.py
153+
154+
############################
155+
# Batch files
156+
############################
157+
*.bat
158+
!docker/build_and_test.bat

0 commit comments

Comments
 (0)