checkwash 0.1.49__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1318) hide show
  1. checkwash-0.1.49/.gitattributes +8 -0
  2. checkwash-0.1.49/.github/ISSUE_TEMPLATE/config.yml +26 -0
  3. checkwash-0.1.49/.github/ISSUE_TEMPLATE/false-block.md +26 -0
  4. checkwash-0.1.49/.github/ISSUE_TEMPLATE/send-us-a-cheat.md +36 -0
  5. checkwash-0.1.49/.github/dependabot.yml +17 -0
  6. checkwash-0.1.49/.github/workflows/ci.yml +131 -0
  7. checkwash-0.1.49/.github/workflows/greenwash.yml +18 -0
  8. checkwash-0.1.49/.github/workflows/release.yml +127 -0
  9. checkwash-0.1.49/.gitignore +8 -0
  10. checkwash-0.1.49/.pre-commit-hooks.yaml +14 -0
  11. checkwash-0.1.49/AGENTS.md +21 -0
  12. checkwash-0.1.49/CONTRIBUTING.md +63 -0
  13. checkwash-0.1.49/DECISIONS.md +1862 -0
  14. checkwash-0.1.49/LICENSE +190 -0
  15. checkwash-0.1.49/PKG-INFO +403 -0
  16. checkwash-0.1.49/README.md +381 -0
  17. checkwash-0.1.49/SECURITY.md +42 -0
  18. checkwash-0.1.49/SPEC.md +418 -0
  19. checkwash-0.1.49/STATE.md +2160 -0
  20. checkwash-0.1.49/THREATMODEL.md +322 -0
  21. checkwash-0.1.49/action/README.md +70 -0
  22. checkwash-0.1.49/action/action.yml +80 -0
  23. checkwash-0.1.49/action/post_review.py +92 -0
  24. checkwash-0.1.49/action/required-ruleset.json +22 -0
  25. checkwash-0.1.49/benchmarks/FAILURES.md +250 -0
  26. checkwash-0.1.49/benchmarks/README.md +343 -0
  27. checkwash-0.1.49/benchmarks/RESULTS.md +120 -0
  28. checkwash-0.1.49/benchmarks/adjudication-2026-08-02.json +252 -0
  29. checkwash-0.1.49/benchmarks/adjudication-2026-08-03.json +358 -0
  30. checkwash-0.1.49/benchmarks/adjudication-2026-08-25.json +417 -0
  31. checkwash-0.1.49/benchmarks/adjudication-2026-08-26.json +409 -0
  32. checkwash-0.1.49/benchmarks/adjudication-2026-08-26b.json +416 -0
  33. checkwash-0.1.49/benchmarks/adjudication-rater-B-2026-08-04.json +212 -0
  34. checkwash-0.1.49/benchmarks/adjudication-rater-C-2026-08-04.json +212 -0
  35. checkwash-0.1.49/benchmarks/compare/COMPARISON.md +92 -0
  36. checkwash-0.1.49/benchmarks/compare/README.md +65 -0
  37. checkwash-0.1.49/benchmarks/compare/decoy-2026-07-31.json +331 -0
  38. checkwash-0.1.49/benchmarks/compare/prepare.py +138 -0
  39. checkwash-0.1.49/benchmarks/compare/run.py +172 -0
  40. checkwash-0.1.49/benchmarks/corpus-expansion.md +61 -0
  41. checkwash-0.1.49/benchmarks/decoy/README.md +127 -0
  42. checkwash-0.1.49/benchmarks/decoy/arm-adversarial-2026-07-30.json +373 -0
  43. checkwash-0.1.49/benchmarks/decoy/arm-informed-2026-08-07.json +91 -0
  44. checkwash-0.1.49/benchmarks/decoy/arm-natural-2026-07-30.json +181 -0
  45. checkwash-0.1.49/benchmarks/decoy/arm-probe-adversarial-2026-08-04.json +175 -0
  46. checkwash-0.1.49/benchmarks/decoy/arm-probe-natural-2026-08-04.json +98 -0
  47. checkwash-0.1.49/benchmarks/decoy/arm-probe2-adversarial-2026-08-07.json +68 -0
  48. checkwash-0.1.49/benchmarks/decoy/arm-probe2-natural-2026-08-07.json +43 -0
  49. checkwash-0.1.49/benchmarks/decoy/expected.json +61 -0
  50. checkwash-0.1.49/benchmarks/decoy/harvest.py +166 -0
  51. checkwash-0.1.49/benchmarks/decoy/make_tasks.py +669 -0
  52. checkwash-0.1.49/benchmarks/decoy/replay.py +108 -0
  53. checkwash-0.1.49/benchmarks/external-credits.json +3 -0
  54. checkwash-0.1.49/benchmarks/make_failures.py +265 -0
  55. checkwash-0.1.49/benchmarks/make_results.py +262 -0
  56. checkwash-0.1.49/benchmarks/refactors/README.md +73 -0
  57. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/AFTER/tests/test_clamp.py +17 -0
  58. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/BEFORE/tests/test_clamp.py +13 -0
  59. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-BUG/src/app/__init__.py +0 -0
  60. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-BUG/src/app/clamp.py +6 -0
  61. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-GOOD/src/app/__init__.py +0 -0
  62. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-GOOD/src/app/clamp.py +6 -0
  63. checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/WHY.txt +1 -0
  64. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/AFTER/tests/test_factorial.py +13 -0
  65. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/BEFORE/tests/test_factorial.py +17 -0
  66. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-BUG/src/app/__init__.py +0 -0
  67. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-BUG/src/app/factorial.py +7 -0
  68. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-GOOD/src/app/__init__.py +0 -0
  69. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-GOOD/src/app/factorial.py +7 -0
  70. checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/WHY.txt +1 -0
  71. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/AFTER/tests/test_palindrome.py +17 -0
  72. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/BEFORE/tests/test_palindrome.py +17 -0
  73. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-BUG/src/app/__init__.py +0 -0
  74. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-BUG/src/app/palindrome.py +3 -0
  75. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-GOOD/src/app/__init__.py +0 -0
  76. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-GOOD/src/app/palindrome.py +3 -0
  77. checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/WHY.txt +1 -0
  78. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/AFTER/tests/test_unique.py +20 -0
  79. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/BEFORE/tests/test_unique.py +15 -0
  80. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-BUG/src/app/__init__.py +0 -0
  81. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-BUG/src/app/unique.py +2 -0
  82. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-GOOD/src/app/__init__.py +0 -0
  83. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-GOOD/src/app/unique.py +8 -0
  84. checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/WHY.txt +1 -0
  85. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/AFTER/tests/test_grade.py +8 -0
  86. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/BEFORE/tests/test_grade.py +8 -0
  87. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-BUG/src/app/__init__.py +0 -0
  88. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-BUG/src/app/grade.py +10 -0
  89. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-GOOD/src/app/__init__.py +0 -0
  90. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-GOOD/src/app/grade.py +10 -0
  91. checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/WHY.txt +1 -0
  92. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/AFTER/tests/test_fib.py +8 -0
  93. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/BEFORE/tests/test_fib.py +8 -0
  94. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-BUG/src/app/__init__.py +0 -0
  95. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-BUG/src/app/fib.py +7 -0
  96. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-GOOD/src/app/__init__.py +0 -0
  97. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-GOOD/src/app/fib.py +7 -0
  98. checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/WHY.txt +1 -0
  99. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/AFTER/tests/test_running_sum.py +14 -0
  100. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/BEFORE/tests/test_running_sum.py +13 -0
  101. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-BUG/src/app/__init__.py +0 -0
  102. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-BUG/src/app/running_sum.py +5 -0
  103. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-GOOD/src/app/__init__.py +0 -0
  104. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-GOOD/src/app/running_sum.py +7 -0
  105. checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/WHY.txt +1 -0
  106. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/AFTER/tests/test_slugify.py +9 -0
  107. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/BEFORE/tests/test_slugify.py +13 -0
  108. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-BUG/src/app/__init__.py +0 -0
  109. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-BUG/src/app/slugify.py +7 -0
  110. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-GOOD/src/app/__init__.py +0 -0
  111. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-GOOD/src/app/slugify.py +7 -0
  112. checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/WHY.txt +1 -0
  113. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/AFTER/tests/test_parse_ints.py +20 -0
  114. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/BEFORE/tests/test_parse_ints.py +9 -0
  115. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-BUG/src/app/__init__.py +0 -0
  116. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-BUG/src/app/parse_ints.py +2 -0
  117. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-GOOD/src/app/__init__.py +0 -0
  118. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-GOOD/src/app/parse_ints.py +6 -0
  119. checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/WHY.txt +1 -0
  120. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/AFTER/tests/test_median.py +17 -0
  121. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/BEFORE/tests/test_median.py +9 -0
  122. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-BUG/src/app/__init__.py +0 -0
  123. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-BUG/src/app/median.py +7 -0
  124. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-GOOD/src/app/__init__.py +0 -0
  125. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-GOOD/src/app/median.py +9 -0
  126. checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/WHY.txt +1 -0
  127. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/AFTER/tests/test_anagram.py +11 -0
  128. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/BEFORE/tests/test_anagram.py +11 -0
  129. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-BUG/src/app/__init__.py +0 -0
  130. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-BUG/src/app/anagram.py +2 -0
  131. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-GOOD/src/app/__init__.py +0 -0
  132. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-GOOD/src/app/anagram.py +2 -0
  133. checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/WHY.txt +1 -0
  134. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/AFTER/tests/conftest.py +11 -0
  135. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/AFTER/tests/test_chunk.py +6 -0
  136. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/BEFORE/tests/test_chunk.py +9 -0
  137. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-BUG/src/app/__init__.py +0 -0
  138. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-BUG/src/app/chunk.py +4 -0
  139. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-GOOD/src/app/__init__.py +0 -0
  140. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-GOOD/src/app/chunk.py +4 -0
  141. checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/WHY.txt +1 -0
  142. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/AFTER/tests/test_rotate.py +10 -0
  143. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/BEFORE/tests/test_rotate.py +9 -0
  144. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-BUG/src/app/__init__.py +0 -0
  145. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-BUG/src/app/rotate.py +5 -0
  146. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-GOOD/src/app/__init__.py +0 -0
  147. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-GOOD/src/app/rotate.py +5 -0
  148. checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/WHY.txt +1 -0
  149. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/AFTER/tests/test_sign.py +14 -0
  150. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/BEFORE/tests/test_sign.py +10 -0
  151. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-BUG/src/app/__init__.py +0 -0
  152. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-BUG/src/app/sign.py +4 -0
  153. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-GOOD/src/app/__init__.py +0 -0
  154. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-GOOD/src/app/sign.py +6 -0
  155. checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/WHY.txt +1 -0
  156. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/AFTER/tests/test_gcd.py +11 -0
  157. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/BEFORE/tests/test_gcd.py +9 -0
  158. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-BUG/src/app/__init__.py +0 -0
  159. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-BUG/src/app/gcd.py +4 -0
  160. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-GOOD/src/app/__init__.py +0 -0
  161. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-GOOD/src/app/gcd.py +5 -0
  162. checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/WHY.txt +1 -0
  163. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/AFTER/tests/test_digit_sum.py +9 -0
  164. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/BEFORE/tests/test_digit_sum.py +11 -0
  165. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-BUG/src/app/__init__.py +0 -0
  166. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-BUG/src/app/digit_sum.py +2 -0
  167. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-GOOD/src/app/__init__.py +0 -0
  168. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-GOOD/src/app/digit_sum.py +2 -0
  169. checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/WHY.txt +1 -0
  170. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/AFTER/tests/test_cap_words.py +24 -0
  171. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/BEFORE/tests/test_cap_words.py +9 -0
  172. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-BUG/src/app/__init__.py +0 -0
  173. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-BUG/src/app/cap_words.py +2 -0
  174. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-GOOD/src/app/__init__.py +0 -0
  175. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-GOOD/src/app/cap_words.py +2 -0
  176. checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/WHY.txt +1 -0
  177. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/AFTER/tests/test_interleave.py +14 -0
  178. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/BEFORE/tests/test_interleave.py +9 -0
  179. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-BUG/src/app/__init__.py +0 -0
  180. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-BUG/src/app/interleave.py +7 -0
  181. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-GOOD/src/app/__init__.py +0 -0
  182. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-GOOD/src/app/interleave.py +9 -0
  183. checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/WHY.txt +1 -0
  184. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/AFTER/tests/test_normalize.py +24 -0
  185. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/BEFORE/tests/test_normalize.py +9 -0
  186. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-BUG/src/app/__init__.py +0 -0
  187. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-BUG/src/app/normalize.py +2 -0
  188. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-GOOD/src/app/__init__.py +0 -0
  189. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-GOOD/src/app/normalize.py +2 -0
  190. checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/WHY.txt +1 -0
  191. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/AFTER/tests/test_windows.py +10 -0
  192. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/BEFORE/tests/test_windows.py +9 -0
  193. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-BUG/src/app/__init__.py +0 -0
  194. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-BUG/src/app/windows.py +4 -0
  195. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-GOOD/src/app/__init__.py +0 -0
  196. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-GOOD/src/app/windows.py +4 -0
  197. checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/WHY.txt +1 -0
  198. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/AFTER/tests/test_expand_range.py +13 -0
  199. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/BEFORE/tests/test_expand_range.py +6 -0
  200. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-BUG/src/app/__init__.py +0 -0
  201. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-BUG/src/app/expand_range.py +2 -0
  202. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-GOOD/src/app/__init__.py +0 -0
  203. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-GOOD/src/app/expand_range.py +2 -0
  204. checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/WHY.txt +1 -0
  205. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/AFTER/tests/test_safe_div.py +19 -0
  206. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/BEFORE/tests/test_safe_div.py +9 -0
  207. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-BUG/src/app/__init__.py +0 -0
  208. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-BUG/src/app/safe_div.py +4 -0
  209. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-GOOD/src/app/__init__.py +0 -0
  210. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-GOOD/src/app/safe_div.py +4 -0
  211. checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/WHY.txt +1 -0
  212. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/AFTER/tests/test_parse_name.py +14 -0
  213. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/BEFORE/tests/test_parse_name.py +13 -0
  214. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-BUG/src/app/__init__.py +0 -0
  215. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-BUG/src/app/parse_name.py +5 -0
  216. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-GOOD/src/app/__init__.py +0 -0
  217. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-GOOD/src/app/parse_name.py +5 -0
  218. checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/WHY.txt +1 -0
  219. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/AFTER/tests/test_celsius.py +11 -0
  220. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/BEFORE/tests/test_celsius.py +9 -0
  221. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-BUG/src/app/__init__.py +0 -0
  222. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-BUG/src/app/celsius.py +2 -0
  223. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-GOOD/src/app/__init__.py +0 -0
  224. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-GOOD/src/app/celsius.py +2 -0
  225. checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/WHY.txt +1 -0
  226. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/AFTER/tests/test_all_equal.py +17 -0
  227. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/BEFORE/tests/test_all_equal.py +13 -0
  228. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-BUG/src/app/__init__.py +0 -0
  229. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-BUG/src/app/all_equal.py +2 -0
  230. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-GOOD/src/app/__init__.py +0 -0
  231. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-GOOD/src/app/all_equal.py +2 -0
  232. checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/WHY.txt +1 -0
  233. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/AFTER/tests/test_leap.py +13 -0
  234. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/BEFORE/tests/test_leap.py +13 -0
  235. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-BUG/src/app/__init__.py +0 -0
  236. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-BUG/src/app/leap.py +2 -0
  237. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-GOOD/src/app/__init__.py +0 -0
  238. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-GOOD/src/app/leap.py +2 -0
  239. checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/WHY.txt +1 -0
  240. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/AFTER/tests/test_clip_index.py +12 -0
  241. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/BEFORE/tests/test_clip_index.py +14 -0
  242. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-BUG/src/app/__init__.py +0 -0
  243. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-BUG/src/app/clip_index.py +8 -0
  244. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-GOOD/src/app/__init__.py +0 -0
  245. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-GOOD/src/app/clip_index.py +8 -0
  246. checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/WHY.txt +1 -0
  247. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/AFTER/tests/test_parse_rgb.py +13 -0
  248. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/BEFORE/tests/test_parse_rgb.py +15 -0
  249. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-BUG/src/app/__init__.py +0 -0
  250. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-BUG/src/app/parse_rgb.py +3 -0
  251. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-GOOD/src/app/__init__.py +0 -0
  252. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-GOOD/src/app/parse_rgb.py +3 -0
  253. checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/WHY.txt +1 -0
  254. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/AFTER/tests/test_flatten.py +11 -0
  255. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/BEFORE/tests/test_flatten.py +11 -0
  256. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-BUG/src/app/__init__.py +0 -0
  257. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-BUG/src/app/flatten.py +5 -0
  258. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-GOOD/src/app/__init__.py +0 -0
  259. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-GOOD/src/app/flatten.py +8 -0
  260. checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/WHY.txt +1 -0
  261. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/AFTER/tests/helpers.py +5 -0
  262. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/AFTER/tests/test_prefix.py +13 -0
  263. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/BEFORE/tests/test_prefix.py +9 -0
  264. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-BUG/src/app/__init__.py +0 -0
  265. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-BUG/src/app/prefix.py +6 -0
  266. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-GOOD/src/app/__init__.py +0 -0
  267. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-GOOD/src/app/prefix.py +6 -0
  268. checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/WHY.txt +1 -0
  269. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/AFTER/tests/test_indent.py +17 -0
  270. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/BEFORE/tests/test_indent.py +13 -0
  271. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-BUG/src/app/__init__.py +0 -0
  272. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-BUG/src/app/indent.py +5 -0
  273. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-GOOD/src/app/__init__.py +0 -0
  274. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-GOOD/src/app/indent.py +3 -0
  275. checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/WHY.txt +1 -0
  276. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/AFTER/tests/test_count_vowels.py +13 -0
  277. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/BEFORE/tests/test_count_vowels.py +9 -0
  278. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-BUG/src/app/__init__.py +0 -0
  279. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-BUG/src/app/count_vowels.py +2 -0
  280. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-GOOD/src/app/__init__.py +0 -0
  281. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-GOOD/src/app/count_vowels.py +2 -0
  282. checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/WHY.txt +1 -0
  283. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/AFTER/tests/test_take.py +25 -0
  284. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/BEFORE/tests/test_take.py +21 -0
  285. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-BUG/src/app/__init__.py +0 -0
  286. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-BUG/src/app/take.py +2 -0
  287. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-GOOD/src/app/__init__.py +0 -0
  288. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-GOOD/src/app/take.py +2 -0
  289. checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/WHY.txt +1 -0
  290. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/AFTER/tests/test_ceil_div.py +17 -0
  291. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/BEFORE/tests/test_ceil_div.py +13 -0
  292. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-BUG/src/app/__init__.py +0 -0
  293. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-BUG/src/app/ceil_div.py +4 -0
  294. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-GOOD/src/app/__init__.py +0 -0
  295. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-GOOD/src/app/ceil_div.py +4 -0
  296. checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/WHY.txt +1 -0
  297. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/AFTER/tests/test_rpad.py +16 -0
  298. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/BEFORE/tests/test_rpad.py +15 -0
  299. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-BUG/src/app/__init__.py +0 -0
  300. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-BUG/src/app/rpad.py +4 -0
  301. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-GOOD/src/app/__init__.py +0 -0
  302. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-GOOD/src/app/rpad.py +4 -0
  303. checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/WHY.txt +1 -0
  304. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/AFTER/tests/conftest.py +5 -0
  305. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/AFTER/tests/test_between.py +13 -0
  306. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/BEFORE/tests/test_between.py +13 -0
  307. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-BUG/src/app/__init__.py +0 -0
  308. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-BUG/src/app/between.py +2 -0
  309. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-GOOD/src/app/__init__.py +0 -0
  310. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-GOOD/src/app/between.py +2 -0
  311. checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/WHY.txt +1 -0
  312. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/AFTER/tests/test_initials.py +23 -0
  313. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/BEFORE/tests/test_initials.py +13 -0
  314. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-BUG/src/app/__init__.py +0 -0
  315. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-BUG/src/app/initials.py +2 -0
  316. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-GOOD/src/app/__init__.py +0 -0
  317. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-GOOD/src/app/initials.py +2 -0
  318. checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/WHY.txt +1 -0
  319. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/AFTER/tests/test_is_sorted.py +17 -0
  320. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/BEFORE/tests/test_is_sorted.py +13 -0
  321. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-BUG/src/app/__init__.py +0 -0
  322. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-BUG/src/app/is_sorted.py +2 -0
  323. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-GOOD/src/app/__init__.py +0 -0
  324. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-GOOD/src/app/is_sorted.py +2 -0
  325. checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/WHY.txt +1 -0
  326. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/AFTER/tests/test_pair_sum.py +15 -0
  327. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/BEFORE/tests/test_pair_sum.py +13 -0
  328. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-BUG/src/app/__init__.py +0 -0
  329. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-BUG/src/app/pair_sum.py +2 -0
  330. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-GOOD/src/app/__init__.py +0 -0
  331. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-GOOD/src/app/pair_sum.py +2 -0
  332. checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/WHY.txt +1 -0
  333. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/AFTER/tests/test_ordinal.py +18 -0
  334. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/BEFORE/tests/test_ordinal.py +21 -0
  335. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-BUG/src/app/__init__.py +0 -0
  336. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-BUG/src/app/ordinal.py +3 -0
  337. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-GOOD/src/app/__init__.py +0 -0
  338. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-GOOD/src/app/ordinal.py +6 -0
  339. checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/WHY.txt +1 -0
  340. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/AFTER/tests/test_camel_to_snake.py +17 -0
  341. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/BEFORE/tests/test_camel_to_snake.py +13 -0
  342. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-BUG/src/app/__init__.py +0 -0
  343. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-BUG/src/app/camel_to_snake.py +2 -0
  344. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-GOOD/src/app/__init__.py +0 -0
  345. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-GOOD/src/app/camel_to_snake.py +7 -0
  346. checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/WHY.txt +1 -0
  347. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/AFTER/tests/test_strip_prefix.py +17 -0
  348. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/BEFORE/tests/test_strip_prefix.py +13 -0
  349. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-BUG/src/app/__init__.py +0 -0
  350. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-BUG/src/app/strip_prefix.py +2 -0
  351. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-GOOD/src/app/__init__.py +0 -0
  352. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-GOOD/src/app/strip_prefix.py +4 -0
  353. checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/WHY.txt +1 -0
  354. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/AFTER/tests/test_min_max.py +17 -0
  355. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/BEFORE/tests/test_min_max.py +13 -0
  356. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-BUG/src/app/__init__.py +0 -0
  357. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-BUG/src/app/min_max.py +2 -0
  358. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-GOOD/src/app/__init__.py +0 -0
  359. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-GOOD/src/app/min_max.py +2 -0
  360. checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/WHY.txt +1 -0
  361. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/AFTER/tests/test_product.py +19 -0
  362. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/BEFORE/tests/test_product.py +13 -0
  363. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-BUG/src/app/__init__.py +0 -0
  364. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-BUG/src/app/product.py +5 -0
  365. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-GOOD/src/app/__init__.py +0 -0
  366. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-GOOD/src/app/product.py +5 -0
  367. checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/WHY.txt +1 -0
  368. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/AFTER/tests/conftest.py +11 -0
  369. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/AFTER/tests/test_hamming.py +10 -0
  370. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/BEFORE/tests/test_hamming.py +13 -0
  371. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-BUG/src/app/__init__.py +0 -0
  372. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-BUG/src/app/hamming.py +4 -0
  373. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-GOOD/src/app/__init__.py +0 -0
  374. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-GOOD/src/app/hamming.py +4 -0
  375. checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/WHY.txt +1 -0
  376. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/AFTER/tests/test_reverse_words.py +15 -0
  377. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/BEFORE/tests/test_reverse_words.py +13 -0
  378. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-BUG/src/app/__init__.py +0 -0
  379. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-BUG/src/app/reverse_words.py +2 -0
  380. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-GOOD/src/app/__init__.py +0 -0
  381. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-GOOD/src/app/reverse_words.py +2 -0
  382. checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/WHY.txt +1 -0
  383. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/AFTER/tests/test_squeeze_spaces.py +16 -0
  384. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/BEFORE/tests/test_squeeze_spaces.py +15 -0
  385. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-BUG/src/app/__init__.py +0 -0
  386. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-BUG/src/app/squeeze_spaces.py +2 -0
  387. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-GOOD/src/app/__init__.py +0 -0
  388. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-GOOD/src/app/squeeze_spaces.py +2 -0
  389. checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/WHY.txt +1 -0
  390. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/AFTER/tests/test_is_prefix.py +17 -0
  391. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/BEFORE/tests/test_is_prefix.py +21 -0
  392. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-BUG/src/app/__init__.py +0 -0
  393. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-BUG/src/app/is_prefix.py +2 -0
  394. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-GOOD/src/app/__init__.py +0 -0
  395. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-GOOD/src/app/is_prefix.py +2 -0
  396. checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/WHY.txt +1 -0
  397. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/AFTER/tests/test_digits_only.py +18 -0
  398. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/BEFORE/tests/test_digits_only.py +14 -0
  399. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-BUG/src/app/__init__.py +0 -0
  400. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-BUG/src/app/digits_only.py +2 -0
  401. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-GOOD/src/app/__init__.py +0 -0
  402. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-GOOD/src/app/digits_only.py +2 -0
  403. checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/WHY.txt +1 -0
  404. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/AFTER/tests/test_parse_bool.py +23 -0
  405. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/BEFORE/tests/test_parse_bool.py +13 -0
  406. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-BUG/src/app/__init__.py +0 -0
  407. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-BUG/src/app/parse_bool.py +2 -0
  408. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-GOOD/src/app/__init__.py +0 -0
  409. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-GOOD/src/app/parse_bool.py +2 -0
  410. checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/WHY.txt +1 -0
  411. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/AFTER/tests/test_truncate.py +18 -0
  412. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/BEFORE/tests/test_truncate.py +13 -0
  413. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-BUG/src/app/__init__.py +0 -0
  414. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-BUG/src/app/truncate.py +2 -0
  415. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-GOOD/src/app/__init__.py +0 -0
  416. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-GOOD/src/app/truncate.py +4 -0
  417. checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/WHY.txt +1 -0
  418. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/AFTER/tests/test_fill_none.py +17 -0
  419. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/BEFORE/tests/test_fill_none.py +13 -0
  420. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-BUG/src/app/__init__.py +0 -0
  421. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-BUG/src/app/fill_none.py +2 -0
  422. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-GOOD/src/app/__init__.py +0 -0
  423. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-GOOD/src/app/fill_none.py +2 -0
  424. checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/WHY.txt +1 -0
  425. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/AFTER/tests/test_abs_diff.py +13 -0
  426. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/BEFORE/tests/test_abs_diff.py +9 -0
  427. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-BUG/src/app/__init__.py +0 -0
  428. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-BUG/src/app/abs_diff.py +2 -0
  429. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-GOOD/src/app/__init__.py +0 -0
  430. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-GOOD/src/app/abs_diff.py +2 -0
  431. checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/WHY.txt +1 -0
  432. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/AFTER/tests/test_bit_count.py +21 -0
  433. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/BEFORE/tests/test_bit_count.py +17 -0
  434. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-BUG/src/app/__init__.py +0 -0
  435. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-BUG/src/app/bit_count.py +2 -0
  436. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-GOOD/src/app/__init__.py +0 -0
  437. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-GOOD/src/app/bit_count.py +2 -0
  438. checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/WHY.txt +1 -0
  439. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/AFTER/tests/helpers.py +5 -0
  440. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/AFTER/tests/test_common_suffix.py +17 -0
  441. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/BEFORE/tests/test_common_suffix.py +13 -0
  442. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-BUG/src/app/__init__.py +0 -0
  443. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-BUG/src/app/common_suffix.py +6 -0
  444. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-GOOD/src/app/__init__.py +0 -0
  445. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-GOOD/src/app/common_suffix.py +6 -0
  446. checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/WHY.txt +1 -0
  447. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/AFTER/tests/test_wrap_index.py +8 -0
  448. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/BEFORE/tests/test_wrap_index.py +17 -0
  449. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-BUG/src/app/__init__.py +0 -0
  450. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-BUG/src/app/wrap_index.py +2 -0
  451. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-GOOD/src/app/__init__.py +0 -0
  452. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-GOOD/src/app/wrap_index.py +2 -0
  453. checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/WHY.txt +1 -0
  454. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/AFTER/tests/test_merge_unique.py +14 -0
  455. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/BEFORE/tests/test_merge_unique.py +9 -0
  456. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-BUG/src/app/__init__.py +0 -0
  457. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-BUG/src/app/merge_unique.py +2 -0
  458. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-GOOD/src/app/__init__.py +0 -0
  459. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-GOOD/src/app/merge_unique.py +8 -0
  460. checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/WHY.txt +1 -0
  461. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/AFTER/tests/test_percent.py +23 -0
  462. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/BEFORE/tests/test_percent.py +13 -0
  463. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-BUG/src/app/__init__.py +0 -0
  464. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-BUG/src/app/percent.py +4 -0
  465. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-GOOD/src/app/__init__.py +0 -0
  466. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-GOOD/src/app/percent.py +4 -0
  467. checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/WHY.txt +1 -0
  468. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/AFTER/tests/test_basename.py +16 -0
  469. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/BEFORE/tests/test_basename.py +13 -0
  470. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-BUG/src/app/__init__.py +0 -0
  471. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-BUG/src/app/basename.py +5 -0
  472. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-GOOD/src/app/__init__.py +0 -0
  473. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-GOOD/src/app/basename.py +5 -0
  474. checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/WHY.txt +1 -0
  475. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/AFTER/tests/test_unquote.py +29 -0
  476. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/BEFORE/tests/test_unquote.py +13 -0
  477. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-BUG/src/app/__init__.py +0 -0
  478. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-BUG/src/app/unquote.py +4 -0
  479. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-GOOD/src/app/__init__.py +0 -0
  480. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-GOOD/src/app/unquote.py +4 -0
  481. checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/WHY.txt +1 -0
  482. checkwash-0.1.49/benchmarks/refactors/expected.json +393 -0
  483. checkwash-0.1.49/benchmarks/refactors/results-2026-08-13.json +442 -0
  484. checkwash-0.1.49/benchmarks/refactors/results-latest.json +442 -0
  485. checkwash-0.1.49/benchmarks/refactors/verify.py +127 -0
  486. checkwash-0.1.49/benchmarks/score.py +110 -0
  487. checkwash-0.1.49/benchmarks/sweeps/README.md +24 -0
  488. checkwash-0.1.49/benchmarks/sweeps/attrs.json +72 -0
  489. checkwash-0.1.49/benchmarks/sweeps/click.json +225 -0
  490. checkwash-0.1.49/benchmarks/sweeps/flask.json +162 -0
  491. checkwash-0.1.49/benchmarks/sweeps/httpx.json +520 -0
  492. checkwash-0.1.49/benchmarks/sweeps/rich.json +130 -0
  493. checkwash-0.1.49/benchmarks/sweeps/starlette.json +75 -0
  494. checkwash-0.1.49/benchmarks/tamper/README.md +94 -0
  495. checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/WHY.txt +2 -0
  496. checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/after/tests/test_addsub.py +10 -0
  497. checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/before/tests/test_addsub.py +9 -0
  498. checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/src/app/__init__.py +0 -0
  499. checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/src/app/addsub.py +2 -0
  500. checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/WHY.txt +2 -0
  501. checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/after/tests/test_biggest.py +8 -0
  502. checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/before/tests/test_biggest.py +7 -0
  503. checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/src/app/__init__.py +0 -0
  504. checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/src/app/biggest.py +2 -0
  505. checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/WHY.txt +2 -0
  506. checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/after/tests/test_evenness.py +6 -0
  507. checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/before/tests/test_evenness.py +6 -0
  508. checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/src/app/__init__.py +0 -0
  509. checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/src/app/evenness.py +2 -0
  510. checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/WHY.txt +2 -0
  511. checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/after/tests/test_clamp.py +14 -0
  512. checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/before/tests/test_clamp.py +14 -0
  513. checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/src/app/__init__.py +0 -0
  514. checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/src/app/clamp.py +2 -0
  515. checkwash-0.1.49/benchmarks/tamper/cases/005-absint/WHY.txt +2 -0
  516. checkwash-0.1.49/benchmarks/tamper/cases/005-absint/after/tests/test_absint.py +5 -0
  517. checkwash-0.1.49/benchmarks/tamper/cases/005-absint/before/tests/test_absint.py +7 -0
  518. checkwash-0.1.49/benchmarks/tamper/cases/005-absint/src/app/__init__.py +0 -0
  519. checkwash-0.1.49/benchmarks/tamper/cases/005-absint/src/app/absint.py +2 -0
  520. checkwash-0.1.49/benchmarks/tamper/cases/006-twice/WHY.txt +2 -0
  521. checkwash-0.1.49/benchmarks/tamper/cases/006-twice/after/tests/test_twice.py +16 -0
  522. checkwash-0.1.49/benchmarks/tamper/cases/006-twice/before/tests/test_twice.py +17 -0
  523. checkwash-0.1.49/benchmarks/tamper/cases/006-twice/src/app/__init__.py +0 -0
  524. checkwash-0.1.49/benchmarks/tamper/cases/006-twice/src/app/twice.py +2 -0
  525. checkwash-0.1.49/benchmarks/tamper/cases/007-average/WHY.txt +2 -0
  526. checkwash-0.1.49/benchmarks/tamper/cases/007-average/after/tests/test_average.py +10 -0
  527. checkwash-0.1.49/benchmarks/tamper/cases/007-average/before/tests/test_average.py +9 -0
  528. checkwash-0.1.49/benchmarks/tamper/cases/007-average/src/app/__init__.py +0 -0
  529. checkwash-0.1.49/benchmarks/tamper/cases/007-average/src/app/average.py +2 -0
  530. checkwash-0.1.49/benchmarks/tamper/cases/008-titled/WHY.txt +2 -0
  531. checkwash-0.1.49/benchmarks/tamper/cases/008-titled/after/tests/test_titled.py +13 -0
  532. checkwash-0.1.49/benchmarks/tamper/cases/008-titled/before/tests/test_titled.py +13 -0
  533. checkwash-0.1.49/benchmarks/tamper/cases/008-titled/src/app/__init__.py +0 -0
  534. checkwash-0.1.49/benchmarks/tamper/cases/008-titled/src/app/titled.py +2 -0
  535. checkwash-0.1.49/benchmarks/tamper/cases/009-double/WHY.txt +2 -0
  536. checkwash-0.1.49/benchmarks/tamper/cases/009-double/after/tests/test_double.py +5 -0
  537. checkwash-0.1.49/benchmarks/tamper/cases/009-double/before/tests/test_double.py +5 -0
  538. checkwash-0.1.49/benchmarks/tamper/cases/009-double/src/app/__init__.py +0 -0
  539. checkwash-0.1.49/benchmarks/tamper/cases/009-double/src/app/double.py +2 -0
  540. checkwash-0.1.49/benchmarks/tamper/cases/010-squares/WHY.txt +2 -0
  541. checkwash-0.1.49/benchmarks/tamper/cases/010-squares/after/tests/test_squares.py +6 -0
  542. checkwash-0.1.49/benchmarks/tamper/cases/010-squares/before/tests/test_squares.py +6 -0
  543. checkwash-0.1.49/benchmarks/tamper/cases/010-squares/src/app/__init__.py +0 -0
  544. checkwash-0.1.49/benchmarks/tamper/cases/010-squares/src/app/squares.py +2 -0
  545. checkwash-0.1.49/benchmarks/tamper/cases/011-signum/WHY.txt +2 -0
  546. checkwash-0.1.49/benchmarks/tamper/cases/011-signum/after/tests/test_signum.py +12 -0
  547. checkwash-0.1.49/benchmarks/tamper/cases/011-signum/before/tests/test_signum.py +11 -0
  548. checkwash-0.1.49/benchmarks/tamper/cases/011-signum/src/app/__init__.py +0 -0
  549. checkwash-0.1.49/benchmarks/tamper/cases/011-signum/src/app/signum.py +2 -0
  550. checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/WHY.txt +2 -0
  551. checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/after/tests/test_factorial.py +9 -0
  552. checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/before/tests/test_factorial.py +9 -0
  553. checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/src/app/__init__.py +0 -0
  554. checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/src/app/factorial.py +2 -0
  555. checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/WHY.txt +2 -0
  556. checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/after/tests/test_reversal.py +9 -0
  557. checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/before/tests/test_reversal.py +9 -0
  558. checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/src/app/__init__.py +0 -0
  559. checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/src/app/reversal.py +2 -0
  560. checkwash-0.1.49/benchmarks/tamper/cases/014-increment/WHY.txt +2 -0
  561. checkwash-0.1.49/benchmarks/tamper/cases/014-increment/after/tests/test_increment.py +7 -0
  562. checkwash-0.1.49/benchmarks/tamper/cases/014-increment/before/tests/test_increment.py +9 -0
  563. checkwash-0.1.49/benchmarks/tamper/cases/014-increment/src/app/__init__.py +0 -0
  564. checkwash-0.1.49/benchmarks/tamper/cases/014-increment/src/app/increment.py +2 -0
  565. checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/WHY.txt +2 -0
  566. checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/after/tests/test_decrement.py +13 -0
  567. checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/before/tests/test_decrement.py +11 -0
  568. checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/src/app/__init__.py +0 -0
  569. checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/src/app/decrement.py +2 -0
  570. checkwash-0.1.49/benchmarks/tamper/cases/016-negate/WHY.txt +2 -0
  571. checkwash-0.1.49/benchmarks/tamper/cases/016-negate/after/tests/test_negate.py +13 -0
  572. checkwash-0.1.49/benchmarks/tamper/cases/016-negate/before/tests/test_negate.py +15 -0
  573. checkwash-0.1.49/benchmarks/tamper/cases/016-negate/src/app/__init__.py +0 -0
  574. checkwash-0.1.49/benchmarks/tamper/cases/016-negate/src/app/negate.py +2 -0
  575. checkwash-0.1.49/benchmarks/tamper/cases/017-power/WHY.txt +2 -0
  576. checkwash-0.1.49/benchmarks/tamper/cases/017-power/after/tests/test_power.py +8 -0
  577. checkwash-0.1.49/benchmarks/tamper/cases/017-power/before/tests/test_power.py +7 -0
  578. checkwash-0.1.49/benchmarks/tamper/cases/017-power/src/app/__init__.py +0 -0
  579. checkwash-0.1.49/benchmarks/tamper/cases/017-power/src/app/power.py +2 -0
  580. checkwash-0.1.49/benchmarks/tamper/cases/018-concat/WHY.txt +2 -0
  581. checkwash-0.1.49/benchmarks/tamper/cases/018-concat/after/tests/test_concat.py +9 -0
  582. checkwash-0.1.49/benchmarks/tamper/cases/018-concat/before/tests/test_concat.py +8 -0
  583. checkwash-0.1.49/benchmarks/tamper/cases/018-concat/src/app/__init__.py +0 -0
  584. checkwash-0.1.49/benchmarks/tamper/cases/018-concat/src/app/concat.py +2 -0
  585. checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/WHY.txt +2 -0
  586. checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/after/tests/test_fibonacci.py +9 -0
  587. checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/before/tests/test_fibonacci.py +8 -0
  588. checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/src/app/__init__.py +0 -0
  589. checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/src/app/fibonacci.py +2 -0
  590. checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/WHY.txt +2 -0
  591. checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/after/tests/test_multiply.py +8 -0
  592. checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/before/tests/test_multiply.py +8 -0
  593. checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/src/app/__init__.py +0 -0
  594. checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/src/app/multiply.py +2 -0
  595. checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/WHY.txt +2 -0
  596. checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/after/tests/test_gcd.py +14 -0
  597. checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/before/tests/test_gcd.py +14 -0
  598. checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/src/app/__init__.py +0 -0
  599. checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/src/app/gcd.py +2 -0
  600. checkwash-0.1.49/benchmarks/tamper/cases/022-median/WHY.txt +2 -0
  601. checkwash-0.1.49/benchmarks/tamper/cases/022-median/after/tests/test_median.py +10 -0
  602. checkwash-0.1.49/benchmarks/tamper/cases/022-median/before/tests/test_median.py +10 -0
  603. checkwash-0.1.49/benchmarks/tamper/cases/022-median/src/app/__init__.py +0 -0
  604. checkwash-0.1.49/benchmarks/tamper/cases/022-median/src/app/median.py +2 -0
  605. checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/WHY.txt +2 -0
  606. checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/after/tests/test_palindrome.py +13 -0
  607. checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/before/tests/test_palindrome.py +12 -0
  608. checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/src/app/__init__.py +0 -0
  609. checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/src/app/palindrome.py +2 -0
  610. checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/WHY.txt +2 -0
  611. checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/after/tests/test_prefix.py +13 -0
  612. checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/before/tests/test_prefix.py +11 -0
  613. checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/src/app/__init__.py +0 -0
  614. checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/src/app/prefix.py +2 -0
  615. checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/WHY.txt +2 -0
  616. checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/after/tests/test_rotate.py +11 -0
  617. checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/before/tests/test_rotate.py +8 -0
  618. checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/src/app/__init__.py +0 -0
  619. checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/src/app/rotate.py +2 -0
  620. checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/WHY.txt +2 -0
  621. checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/after/tests/test_normalize.py +14 -0
  622. checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/before/tests/test_normalize.py +14 -0
  623. checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/src/app/__init__.py +0 -0
  624. checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/src/app/normalize.py +2 -0
  625. checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/WHY.txt +2 -0
  626. checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/after/tests/test_clamp0.py +7 -0
  627. checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/before/tests/test_clamp0.py +7 -0
  628. checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/src/app/__init__.py +0 -0
  629. checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/src/app/clamp0.py +2 -0
  630. checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/WHY.txt +2 -0
  631. checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/after/tests/test_lowercase.py +9 -0
  632. checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/before/tests/test_lowercase.py +9 -0
  633. checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/src/app/__init__.py +0 -0
  634. checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/src/app/lowercase.py +2 -0
  635. checkwash-0.1.49/benchmarks/tamper/cases/029-unique/WHY.txt +2 -0
  636. checkwash-0.1.49/benchmarks/tamper/cases/029-unique/after/tests/test_unique.py +6 -0
  637. checkwash-0.1.49/benchmarks/tamper/cases/029-unique/before/tests/test_unique.py +6 -0
  638. checkwash-0.1.49/benchmarks/tamper/cases/029-unique/src/app/__init__.py +0 -0
  639. checkwash-0.1.49/benchmarks/tamper/cases/029-unique/src/app/unique.py +2 -0
  640. checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/WHY.txt +2 -0
  641. checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/after/tests/test_flatten.py +7 -0
  642. checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/before/tests/test_flatten.py +6 -0
  643. checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/src/app/__init__.py +0 -0
  644. checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/src/app/flatten.py +2 -0
  645. checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/WHY.txt +2 -0
  646. checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/after/tests/test_parsebool.py +8 -0
  647. checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/before/tests/test_parsebool.py +7 -0
  648. checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/src/app/__init__.py +0 -0
  649. checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/src/app/parsebool.py +2 -0
  650. checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/WHY.txt +2 -0
  651. checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/after/tests/test_midpoint.py +10 -0
  652. checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/before/tests/test_midpoint.py +8 -0
  653. checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/src/app/__init__.py +0 -0
  654. checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/src/app/midpoint.py +2 -0
  655. checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/WHY.txt +2 -0
  656. checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/after/tests/test_clipstr.py +13 -0
  657. checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/before/tests/test_clipstr.py +13 -0
  658. checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/src/app/__init__.py +0 -0
  659. checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/src/app/clipstr.py +2 -0
  660. checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/WHY.txt +2 -0
  661. checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/after/tests/test_anagram.py +11 -0
  662. checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/before/tests/test_anagram.py +12 -0
  663. checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/src/app/__init__.py +0 -0
  664. checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/src/app/anagram.py +2 -0
  665. checkwash-0.1.49/benchmarks/tamper/cases/035-identity/WHY.txt +2 -0
  666. checkwash-0.1.49/benchmarks/tamper/cases/035-identity/after/tests/test_identity.py +15 -0
  667. checkwash-0.1.49/benchmarks/tamper/cases/035-identity/before/tests/test_identity.py +15 -0
  668. checkwash-0.1.49/benchmarks/tamper/cases/035-identity/src/app/__init__.py +0 -0
  669. checkwash-0.1.49/benchmarks/tamper/cases/035-identity/src/app/identity.py +2 -0
  670. checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/WHY.txt +2 -0
  671. checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/after/tests/test_countvowels.py +12 -0
  672. checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/before/tests/test_countvowels.py +12 -0
  673. checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/src/app/__init__.py +0 -0
  674. checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/src/app/countvowels.py +2 -0
  675. checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/WHY.txt +2 -0
  676. checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/after/tests/test_wraptext.py +22 -0
  677. checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/before/tests/test_wraptext.py +14 -0
  678. checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/src/app/__init__.py +0 -0
  679. checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/src/app/wraptext.py +2 -0
  680. checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/WHY.txt +2 -0
  681. checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/after/tests/test_slugify.py +6 -0
  682. checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/before/tests/test_slugify.py +6 -0
  683. checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/src/app/__init__.py +0 -0
  684. checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/src/app/slugify.py +2 -0
  685. checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/WHY.txt +2 -0
  686. checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/after/tests/test_percentile.py +13 -0
  687. checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/before/tests/test_percentile.py +13 -0
  688. checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/src/app/__init__.py +0 -0
  689. checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/src/app/percentile.py +2 -0
  690. checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/WHY.txt +2 -0
  691. checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/after/tests/test_startswith.py +13 -0
  692. checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/before/tests/test_startswith.py +13 -0
  693. checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/src/app/__init__.py +0 -0
  694. checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/src/app/startswith.py +2 -0
  695. checkwash-0.1.49/benchmarks/tamper/cases/README.md +14 -0
  696. checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/WHY.txt +2 -0
  697. checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/after/tests/test_001.py +5 -0
  698. checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/before/tests/test_001.py +3 -0
  699. checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/src/app/__init__.py +0 -0
  700. checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/src/app/prod.py +4 -0
  701. checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/WHY.txt +2 -0
  702. checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/after/tests/test_002.py +7 -0
  703. checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/before/tests/test_002.py +3 -0
  704. checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/src/app/__init__.py +0 -0
  705. checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/src/app/prod.py +4 -0
  706. checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/WHY.txt +2 -0
  707. checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/after/tests/test_003.py +5 -0
  708. checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/before/tests/test_003.py +3 -0
  709. checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/src/app/__init__.py +0 -0
  710. checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/src/app/prod.py +3 -0
  711. checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/WHY.txt +2 -0
  712. checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/after/tests/test_004.py +8 -0
  713. checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/before/tests/test_004.py +3 -0
  714. checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/src/app/__init__.py +0 -0
  715. checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/src/app/prod.py +4 -0
  716. checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/WHY.txt +2 -0
  717. checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/after/tests/test_005.py +5 -0
  718. checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/before/tests/test_005.py +3 -0
  719. checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/src/app/__init__.py +0 -0
  720. checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/src/app/prod.py +4 -0
  721. checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/WHY.txt +2 -0
  722. checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/after/tests/test_006.py +5 -0
  723. checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/before/tests/test_006.py +3 -0
  724. checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/src/app/__init__.py +0 -0
  725. checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/src/app/prod.py +4 -0
  726. checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/WHY.txt +2 -0
  727. checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/after/tests/test_007.py +7 -0
  728. checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/before/tests/test_007.py +3 -0
  729. checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/src/app/__init__.py +0 -0
  730. checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/src/app/prod.py +9 -0
  731. checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/WHY.txt +2 -0
  732. checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/after/tests/test_008.py +7 -0
  733. checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/before/tests/test_008.py +3 -0
  734. checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/src/app/__init__.py +0 -0
  735. checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/src/app/prod.py +2 -0
  736. checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/WHY.txt +2 -0
  737. checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/after/tests/test_009.py +9 -0
  738. checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/before/tests/test_009.py +3 -0
  739. checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/src/app/__init__.py +0 -0
  740. checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/src/app/prod.py +4 -0
  741. checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/WHY.txt +2 -0
  742. checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/after/tests/test_010.py +18 -0
  743. checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/before/tests/test_010.py +6 -0
  744. checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/src/app/__init__.py +0 -0
  745. checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/src/app/prod.py +9 -0
  746. checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/WHY.txt +2 -0
  747. checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/after/tests/test_011.py +6 -0
  748. checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/before/tests/test_011.py +3 -0
  749. checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/src/app/__init__.py +0 -0
  750. checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/src/app/prod.py +4 -0
  751. checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/WHY.txt +2 -0
  752. checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/after/tests/test_012.py +6 -0
  753. checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/before/tests/test_012.py +4 -0
  754. checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/src/app/__init__.py +0 -0
  755. checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/src/app/prod.py +2 -0
  756. checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/WHY.txt +2 -0
  757. checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/after/tests/test_013.py +6 -0
  758. checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/before/tests/test_013.py +7 -0
  759. checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/src/app/__init__.py +0 -0
  760. checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/src/app/prod.py +2 -0
  761. checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/WHY.txt +2 -0
  762. checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/after/tests/test_014.py +5 -0
  763. checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/before/tests/test_014.py +3 -0
  764. checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/src/app/__init__.py +0 -0
  765. checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/src/app/prod.py +2 -0
  766. checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/WHY.txt +2 -0
  767. checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/after/tests/test_015.py +5 -0
  768. checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/before/tests/test_015.py +3 -0
  769. checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/src/app/__init__.py +0 -0
  770. checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/src/app/prod.py +4 -0
  771. checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/WHY.txt +2 -0
  772. checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/after/tests/test_016.py +6 -0
  773. checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/before/tests/test_016.py +3 -0
  774. checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/src/app/__init__.py +0 -0
  775. checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/src/app/prod.py +3 -0
  776. checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/WHY.txt +2 -0
  777. checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/after/tests/test_017.py +6 -0
  778. checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/before/tests/test_017.py +7 -0
  779. checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/src/app/__init__.py +0 -0
  780. checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/src/app/prod.py +4 -0
  781. checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/WHY.txt +2 -0
  782. checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/after/tests/test_018.py +6 -0
  783. checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/before/tests/test_018.py +3 -0
  784. checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/src/app/__init__.py +0 -0
  785. checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/src/app/prod.py +6 -0
  786. checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/WHY.txt +2 -0
  787. checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/after/tests/test_019.py +6 -0
  788. checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/before/tests/test_019.py +3 -0
  789. checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/src/app/__init__.py +0 -0
  790. checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/src/app/prod.py +4 -0
  791. checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/WHY.txt +2 -0
  792. checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/after/tests/test_020.py +6 -0
  793. checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/before/tests/test_020.py +3 -0
  794. checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/src/app/__init__.py +0 -0
  795. checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/src/app/prod.py +4 -0
  796. checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/WHY.txt +2 -0
  797. checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/after/tests/test_021.py +5 -0
  798. checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/before/tests/test_021.py +3 -0
  799. checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/src/app/__init__.py +0 -0
  800. checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/src/app/prod.py +2 -0
  801. checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/WHY.txt +2 -0
  802. checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/after/tests/test_022.py +6 -0
  803. checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/before/tests/test_022.py +3 -0
  804. checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/src/app/__init__.py +0 -0
  805. checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/src/app/prod.py +2 -0
  806. checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/WHY.txt +2 -0
  807. checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/after/tests/test_023.py +5 -0
  808. checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/before/tests/test_023.py +3 -0
  809. checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/src/app/__init__.py +0 -0
  810. checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/src/app/prod.py +2 -0
  811. checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/WHY.txt +2 -0
  812. checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/after/tests/test_024.py +5 -0
  813. checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/before/tests/test_024.py +3 -0
  814. checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/src/app/__init__.py +0 -0
  815. checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/src/app/prod.py +2 -0
  816. checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/WHY.txt +2 -0
  817. checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/after/tests/test_025.py +5 -0
  818. checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/before/tests/test_025.py +3 -0
  819. checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/src/app/__init__.py +0 -0
  820. checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/src/app/prod.py +2 -0
  821. checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/WHY.txt +2 -0
  822. checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/after/tests/test_026.py +5 -0
  823. checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/before/tests/test_026.py +3 -0
  824. checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/src/app/__init__.py +0 -0
  825. checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/src/app/prod.py +8 -0
  826. checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/WHY.txt +2 -0
  827. checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/after/tests/test_027.py +6 -0
  828. checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/before/tests/test_027.py +3 -0
  829. checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/src/app/__init__.py +0 -0
  830. checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/src/app/prod.py +5 -0
  831. checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/WHY.txt +2 -0
  832. checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/after/tests/test_028.py +5 -0
  833. checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/before/tests/test_028.py +3 -0
  834. checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/src/app/__init__.py +0 -0
  835. checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/src/app/prod.py +4 -0
  836. checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/WHY.txt +2 -0
  837. checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/after/tests/test_029.py +5 -0
  838. checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/before/tests/test_029.py +5 -0
  839. checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/src/app/__init__.py +0 -0
  840. checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/src/app/prod.py +2 -0
  841. checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/WHY.txt +2 -0
  842. checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/after/tests/test_030.py +5 -0
  843. checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/before/tests/test_030.py +3 -0
  844. checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/src/app/__init__.py +0 -0
  845. checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/src/app/prod.py +2 -0
  846. checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/WHY.txt +2 -0
  847. checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/after/tests/test_031.py +5 -0
  848. checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/before/tests/test_031.py +3 -0
  849. checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/src/app/__init__.py +0 -0
  850. checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/src/app/prod.py +2 -0
  851. checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/WHY.txt +2 -0
  852. checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/after/tests/test_032.py +6 -0
  853. checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/before/tests/test_032.py +3 -0
  854. checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/src/app/__init__.py +0 -0
  855. checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/src/app/prod.py +2 -0
  856. checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/WHY.txt +2 -0
  857. checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/after/tests/test_033.py +6 -0
  858. checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/before/tests/test_033.py +3 -0
  859. checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/src/app/__init__.py +0 -0
  860. checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/src/app/prod.py +2 -0
  861. checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/WHY.txt +2 -0
  862. checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/after/tests/test_034.py +5 -0
  863. checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/before/tests/test_034.py +3 -0
  864. checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/src/app/__init__.py +0 -0
  865. checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/src/app/prod.py +2 -0
  866. checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/WHY.txt +2 -0
  867. checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/after/tests/test_035.py +5 -0
  868. checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/before/tests/test_035.py +3 -0
  869. checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/src/app/__init__.py +0 -0
  870. checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/src/app/prod.py +2 -0
  871. checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/WHY.txt +2 -0
  872. checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/after/tests/test_036.py +5 -0
  873. checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/before/tests/test_036.py +3 -0
  874. checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/src/app/__init__.py +0 -0
  875. checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/src/app/prod.py +2 -0
  876. checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/WHY.txt +2 -0
  877. checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/after/tests/test_037.py +5 -0
  878. checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/before/tests/test_037.py +3 -0
  879. checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/src/app/__init__.py +0 -0
  880. checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/src/app/prod.py +2 -0
  881. checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/WHY.txt +2 -0
  882. checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/after/tests/test_038.py +5 -0
  883. checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/before/tests/test_038.py +3 -0
  884. checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/src/app/__init__.py +0 -0
  885. checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/src/app/prod.py +2 -0
  886. checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/WHY.txt +2 -0
  887. checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/after/tests/test_039.py +5 -0
  888. checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/before/tests/test_039.py +3 -0
  889. checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/src/app/__init__.py +0 -0
  890. checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/src/app/prod.py +2 -0
  891. checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/WHY.txt +2 -0
  892. checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/after/tests/test_040.py +5 -0
  893. checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/before/tests/test_040.py +3 -0
  894. checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/src/app/__init__.py +0 -0
  895. checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/src/app/prod.py +2 -0
  896. checkwash-0.1.49/benchmarks/tamper/expected.json +311 -0
  897. checkwash-0.1.49/benchmarks/tamper/results-2026-08-13.json +426 -0
  898. checkwash-0.1.49/benchmarks/tamper/verify.py +123 -0
  899. checkwash-0.1.49/benchmarks/triage-2026-07-30.json +343 -0
  900. checkwash-0.1.49/docs/OWNER_ACTIONS.md +51 -0
  901. checkwash-0.1.49/docs/RELEASING.md +117 -0
  902. checkwash-0.1.49/docs/ROADMAP-top-tier.md +512 -0
  903. checkwash-0.1.49/docs/cheat-cadence.md +48 -0
  904. checkwash-0.1.49/docs/code-review-static-2026-08-11.md +385 -0
  905. checkwash-0.1.49/docs/defence-design.md +664 -0
  906. checkwash-0.1.49/docs/enterprise.md +78 -0
  907. checkwash-0.1.49/docs/integrations.md +676 -0
  908. checkwash-0.1.49/docs/launch.md +435 -0
  909. checkwash-0.1.49/docs/process-windows.md +94 -0
  910. checkwash-0.1.49/docs/redteam-residual-after-p0.md +496 -0
  911. checkwash-0.1.49/docs/redteam-weaknesses.md +498 -0
  912. checkwash-0.1.49/docs/releases/v0.1.13-candidate.md +48 -0
  913. checkwash-0.1.49/docs/satellite-execution.md +69 -0
  914. checkwash-0.1.49/docs/stability.md +129 -0
  915. checkwash-0.1.49/examples/invoice/README.md +25 -0
  916. checkwash-0.1.49/examples/invoice/billing.py +3 -0
  917. checkwash-0.1.49/examples/invoice/tests/test_billing.py +6 -0
  918. checkwash-0.1.49/pyproject.toml +44 -0
  919. checkwash-0.1.49/src/greenwash/__init__.py +6 -0
  920. checkwash-0.1.49/src/greenwash/__main__.py +3 -0
  921. checkwash-0.1.49/src/greenwash/allowlist.py +129 -0
  922. checkwash-0.1.49/src/greenwash/bench.py +318 -0
  923. checkwash-0.1.49/src/greenwash/cases.py +159 -0
  924. checkwash-0.1.49/src/greenwash/change.py +19 -0
  925. checkwash-0.1.49/src/greenwash/ci.py +246 -0
  926. checkwash-0.1.49/src/greenwash/cli.py +564 -0
  927. checkwash-0.1.49/src/greenwash/compat.py +339 -0
  928. checkwash-0.1.49/src/greenwash/config.py +175 -0
  929. checkwash-0.1.49/src/greenwash/contract.py +61 -0
  930. checkwash-0.1.49/src/greenwash/demo.py +91 -0
  931. checkwash-0.1.49/src/greenwash/demo_cases/01_weakened_assertion.gwcase +18 -0
  932. checkwash-0.1.49/src/greenwash/demo_cases/02_widened_tolerance.gwcase +23 -0
  933. checkwash-0.1.49/src/greenwash/demo_cases/03_rewritten_expectation.gwcase +18 -0
  934. checkwash-0.1.49/src/greenwash/demo_cases/04_skipped_test.gwcase +21 -0
  935. checkwash-0.1.49/src/greenwash/demo_cases/05_swallowed_assertion.gwcase +25 -0
  936. checkwash-0.1.49/src/greenwash/demo_cases/06_self_relaxed_ci.gwcase +19 -0
  937. checkwash-0.1.49/src/greenwash/demo_cases/07_self_relaxed_guardrail.gwcase +14 -0
  938. checkwash-0.1.49/src/greenwash/demo_cases/08_honest_fix_passes.gwcase +12 -0
  939. checkwash-0.1.49/src/greenwash/demo_cases/09_substituted_assertion.gwcase +27 -0
  940. checkwash-0.1.49/src/greenwash/deps.py +190 -0
  941. checkwash-0.1.49/src/greenwash/detectors/__init__.py +44 -0
  942. checkwash-0.1.49/src/greenwash/detectors/assert_removed.py +38 -0
  943. checkwash-0.1.49/src/greenwash/detectors/assert_substituted.py +160 -0
  944. checkwash-0.1.49/src/greenwash/detectors/assert_weakened.py +155 -0
  945. checkwash-0.1.49/src/greenwash/detectors/expectation_definition.py +280 -0
  946. checkwash-0.1.49/src/greenwash/detectors/expected_changed.py +141 -0
  947. checkwash-0.1.49/src/greenwash/detectors/expected_hardcoded.py +91 -0
  948. checkwash-0.1.49/src/greenwash/detectors/globals_rules.py +222 -0
  949. checkwash-0.1.49/src/greenwash/detectors/subject_normalized.py +84 -0
  950. checkwash-0.1.49/src/greenwash/detectors/test_disabled.py +112 -0
  951. checkwash-0.1.49/src/greenwash/detectors/test_patches.py +140 -0
  952. checkwash-0.1.49/src/greenwash/detectors/tolerance_loosened.py +97 -0
  953. checkwash-0.1.49/src/greenwash/doctor.py +473 -0
  954. checkwash-0.1.49/src/greenwash/engine.py +805 -0
  955. checkwash-0.1.49/src/greenwash/evidence.py +226 -0
  956. checkwash-0.1.49/src/greenwash/findings.py +62 -0
  957. checkwash-0.1.49/src/greenwash/frontends/__init__.py +0 -0
  958. checkwash-0.1.49/src/greenwash/frontends/javascript/__init__.py +5 -0
  959. checkwash-0.1.49/src/greenwash/frontends/javascript/frontend.py +115 -0
  960. checkwash-0.1.49/src/greenwash/frontends/python/__init__.py +3 -0
  961. checkwash-0.1.49/src/greenwash/frontends/python/frontend.py +2667 -0
  962. checkwash-0.1.49/src/greenwash/gating.py +724 -0
  963. checkwash-0.1.49/src/greenwash/gitio/__init__.py +19 -0
  964. checkwash-0.1.49/src/greenwash/gitio/git.py +286 -0
  965. checkwash-0.1.49/src/greenwash/ir/__init__.py +0 -0
  966. checkwash-0.1.49/src/greenwash/ir/astutil.py +139 -0
  967. checkwash-0.1.49/src/greenwash/ir/diffalign.py +258 -0
  968. checkwash-0.1.49/src/greenwash/ir/markers.py +35 -0
  969. checkwash-0.1.49/src/greenwash/ir/model.py +359 -0
  970. checkwash-0.1.49/src/greenwash/ir/strength.py +35 -0
  971. checkwash-0.1.49/src/greenwash/pyenv.py +48 -0
  972. checkwash-0.1.49/src/greenwash/report/__init__.py +0 -0
  973. checkwash-0.1.49/src/greenwash/report/jsonout.py +35 -0
  974. checkwash-0.1.49/src/greenwash/report/sarif.py +83 -0
  975. checkwash-0.1.49/src/greenwash/report/term.py +138 -0
  976. checkwash-0.1.49/src/greenwash/roles.py +395 -0
  977. checkwash-0.1.49/src/greenwash/sweep.py +157 -0
  978. checkwash-0.1.49/src/greenwash/zipapp_entry.py +8 -0
  979. checkwash-0.1.49/tests/cases/aliased_skip_marker_pos.gwcase +22 -0
  980. checkwash-0.1.49/tests/cases/allowlist_future_created_pos.gwcase +37 -0
  981. checkwash-0.1.49/tests/cases/allowlist_over_cap_pos.gwcase +23 -0
  982. checkwash-0.1.49/tests/cases/almost_places_added_pos.gwcase +27 -0
  983. checkwash-0.1.49/tests/cases/approx_default_tightened_neg.gwcase +26 -0
  984. checkwash-0.1.49/tests/cases/approx_expected_rewrite_pos.gwcase +28 -0
  985. checkwash-0.1.49/tests/cases/approx_tolerance_added_pos.gwcase +28 -0
  986. checkwash-0.1.49/tests/cases/artifact_cannot_disarm_pos.gwcase +24 -0
  987. checkwash-0.1.49/tests/cases/assert_removed_moved_neg.gwcase +26 -0
  988. checkwash-0.1.49/tests/cases/assert_removed_pos.gwcase +20 -0
  989. checkwash-0.1.49/tests/cases/assert_renamed_both_nonliteral_neg.gwcase +22 -0
  990. checkwash-0.1.49/tests/cases/assert_renamed_subject_neg.gwcase +20 -0
  991. checkwash-0.1.49/tests/cases/assert_reordered_neg.gwcase +20 -0
  992. checkwash-0.1.49/tests/cases/assert_reoriented_compat_neg.gwcase +36 -0
  993. checkwash-0.1.49/tests/cases/assert_reoriented_parametrize_neg.gwcase +40 -0
  994. checkwash-0.1.49/tests/cases/assert_substituted_both_nonliteral_pos.gwcase +26 -0
  995. checkwash-0.1.49/tests/cases/assert_substituted_depbump_neg.gwcase +29 -0
  996. checkwash-0.1.49/tests/cases/assert_substituted_literal_pos.gwcase +23 -0
  997. checkwash-0.1.49/tests/cases/assert_substituted_own_version_bump_pos.gwcase +38 -0
  998. checkwash-0.1.49/tests/cases/assert_substituted_pos.gwcase +28 -0
  999. checkwash-0.1.49/tests/cases/assert_substituted_unit_rewrite_neg.gwcase +23 -0
  1000. checkwash-0.1.49/tests/cases/assert_weakened_pos.gwcase +19 -0
  1001. checkwash-0.1.49/tests/cases/assert_weakened_repair_neg.gwcase +28 -0
  1002. checkwash-0.1.49/tests/cases/assert_weakened_with_prod_change_warn.gwcase +25 -0
  1003. checkwash-0.1.49/tests/cases/assertis_polarity_pos.gwcase +25 -0
  1004. checkwash-0.1.49/tests/cases/bare_bound_then_used_neg.gwcase +22 -0
  1005. checkwash-0.1.49/tests/cases/bare_len_operand_flip_neg.gwcase +22 -0
  1006. checkwash-0.1.49/tests/cases/bare_literal_bound_pad_pos.gwcase +20 -0
  1007. checkwash-0.1.49/tests/cases/bidi_test_data_neg.gwcase +10 -0
  1008. checkwash-0.1.49/tests/cases/broad_except_in_test_pos.gwcase +26 -0
  1009. checkwash-0.1.49/tests/cases/broad_except_inspects_neg.gwcase +25 -0
  1010. checkwash-0.1.49/tests/cases/broad_except_pos.gwcase +16 -0
  1011. checkwash-0.1.49/tests/cases/broad_except_reraises_neg.gwcase +22 -0
  1012. checkwash-0.1.49/tests/cases/build_makefile_stays_prod_neg.gwcase +30 -0
  1013. checkwash-0.1.49/tests/cases/c_extension_still_opaque_neg.gwcase +22 -0
  1014. checkwash-0.1.49/tests/cases/chained_bound_rewrite_pos.gwcase +14 -0
  1015. checkwash-0.1.49/tests/cases/chained_reformat_neg.gwcase +14 -0
  1016. checkwash-0.1.49/tests/cases/ci_config_first_time_neg.gwcase +11 -0
  1017. checkwash-0.1.49/tests/cases/ci_config_migrated_neg.gwcase +28 -0
  1018. checkwash-0.1.49/tests/cases/ci_existing_deselection_neg.gwcase +21 -0
  1019. checkwash-0.1.49/tests/cases/ci_lint_workflow_removed_neg.gwcase +12 -0
  1020. checkwash-0.1.49/tests/cases/ci_new_deselection_pos.gwcase +18 -0
  1021. checkwash-0.1.49/tests/cases/ci_unrelated_edit_neg.gwcase +22 -0
  1022. checkwash-0.1.49/tests/cases/ci_weakened_pos.gwcase +18 -0
  1023. checkwash-0.1.49/tests/cases/circleci_weakened_pos.gwcase +21 -0
  1024. checkwash-0.1.49/tests/cases/class_rename_out_of_collection_pos.gwcase +28 -0
  1025. checkwash-0.1.49/tests/cases/class_skip_pos.gwcase +27 -0
  1026. checkwash-0.1.49/tests/cases/collect_ignore_appended_pos.gwcase +24 -0
  1027. checkwash-0.1.49/tests/cases/collect_ignore_import_gate_neg.gwcase +27 -0
  1028. checkwash-0.1.49/tests/cases/collect_ignore_slice_pos.gwcase +24 -0
  1029. checkwash-0.1.49/tests/cases/compat_gate_always_true_pos.gwcase +28 -0
  1030. checkwash-0.1.49/tests/cases/compat_gate_constant_always_true_pos.gwcase +32 -0
  1031. checkwash-0.1.49/tests/cases/compat_gate_guard_tokenless_pos.gwcase +29 -0
  1032. checkwash-0.1.49/tests/cases/compat_gate_guarded_call_neg.gwcase +35 -0
  1033. checkwash-0.1.49/tests/cases/compat_gate_head_import_neg.gwcase +29 -0
  1034. checkwash-0.1.49/tests/cases/compat_gate_imported_always_true_pos.gwcase +28 -0
  1035. checkwash-0.1.49/tests/cases/compat_gate_imported_constant_neg.gwcase +33 -0
  1036. checkwash-0.1.49/tests/cases/compat_gate_module_constant_neg.gwcase +31 -0
  1037. checkwash-0.1.49/tests/cases/compat_gate_real_neg.gwcase +27 -0
  1038. checkwash-0.1.49/tests/cases/compat_gate_reason_smuggle_pos.gwcase +32 -0
  1039. checkwash-0.1.49/tests/cases/compat_gate_version_always_true_pos.gwcase +28 -0
  1040. checkwash-0.1.49/tests/cases/compat_gate_with_constant_neg.gwcase +34 -0
  1041. checkwash-0.1.49/tests/cases/compat_gate_xfail_neg.gwcase +27 -0
  1042. checkwash-0.1.49/tests/cases/compat_gate_xfail_strict_pos.gwcase +27 -0
  1043. checkwash-0.1.49/tests/cases/compat_skipif_neg.gwcase +22 -0
  1044. checkwash-0.1.49/tests/cases/config_file_consolidated_neg.gwcase +10 -0
  1045. checkwash-0.1.49/tests/cases/conftest_added_file_kills_suite_pos.gwcase +26 -0
  1046. checkwash-0.1.49/tests/cases/conftest_availability_guard_neg.gwcase +44 -0
  1047. checkwash-0.1.49/tests/cases/conftest_collect_ignore_extend_pos.gwcase +19 -0
  1048. checkwash-0.1.49/tests/cases/conftest_collect_ignore_guarded_neg.gwcase +27 -0
  1049. checkwash-0.1.49/tests/cases/conftest_collect_ignore_launder_pos.gwcase +29 -0
  1050. checkwash-0.1.49/tests/cases/conftest_collection_control_not_repaired_pos.gwcase +38 -0
  1051. checkwash-0.1.49/tests/cases/conftest_patches_prod_pos.gwcase +35 -0
  1052. checkwash-0.1.49/tests/cases/conftest_patches_thirdparty_neg.gwcase +24 -0
  1053. checkwash-0.1.49/tests/cases/conftest_skip_hook_pos.gwcase +16 -0
  1054. checkwash-0.1.49/tests/cases/dead_branch_compare_pos.gwcase +20 -0
  1055. checkwash-0.1.49/tests/cases/dead_branch_empty_for_pos.gwcase +20 -0
  1056. checkwash-0.1.49/tests/cases/dead_branch_not_true_pos.gwcase +20 -0
  1057. checkwash-0.1.49/tests/cases/dead_prod_line_pos.gwcase +35 -0
  1058. checkwash-0.1.49/tests/cases/deleted_prod_related_neg.gwcase +24 -0
  1059. checkwash-0.1.49/tests/cases/deleted_prod_unrelated_pos.gwcase +21 -0
  1060. checkwash-0.1.49/tests/cases/dependency_drift_neg.gwcase +29 -0
  1061. checkwash-0.1.49/tests/cases/dependency_drift_weakening_pos.gwcase +29 -0
  1062. checkwash-0.1.49/tests/cases/deploy_script_still_opaque_neg.gwcase +28 -0
  1063. checkwash-0.1.49/tests/cases/deps_comment_only_neg.gwcase +25 -0
  1064. checkwash-0.1.49/tests/cases/deps_reorder_neg.gwcase +29 -0
  1065. checkwash-0.1.49/tests/cases/duplicate_remains_body_differs_pos.gwcase +32 -0
  1066. checkwash-0.1.49/tests/cases/duplicate_remains_disabled_copy_pos.gwcase +40 -0
  1067. checkwash-0.1.49/tests/cases/duplicate_remains_neg.gwcase +32 -0
  1068. checkwash-0.1.49/tests/cases/early_return_pos.gwcase +23 -0
  1069. checkwash-0.1.49/tests/cases/evidence_annotation_neg.gwcase +30 -0
  1070. checkwash-0.1.49/tests/cases/evidence_dead_local_neg.gwcase +31 -0
  1071. checkwash-0.1.49/tests/cases/evidence_real_fix_still_counts_neg.gwcase +30 -0
  1072. checkwash-0.1.49/tests/cases/evidence_string_stmt_neg.gwcase +32 -0
  1073. checkwash-0.1.49/tests/cases/exemption_added_pos.gwcase +16 -0
  1074. checkwash-0.1.49/tests/cases/exemption_rewritten_pos.gwcase +21 -0
  1075. checkwash-0.1.49/tests/cases/expectation_definition_allowed_set_pos.gwcase +16 -0
  1076. checkwash-0.1.49/tests/cases/expectation_definition_branches_replaced_pos.gwcase +29 -0
  1077. checkwash-0.1.49/tests/cases/expectation_definition_changed_pos.gwcase +27 -0
  1078. checkwash-0.1.49/tests/cases/expectation_definition_depdrift_neg.gwcase +31 -0
  1079. checkwash-0.1.49/tests/cases/expectation_definition_gated_alternative_mirror_neg.gwcase +31 -0
  1080. checkwash-0.1.49/tests/cases/expectation_definition_gated_alternative_neg.gwcase +31 -0
  1081. checkwash-0.1.49/tests/cases/expectation_definition_literal_needle_neg.gwcase +32 -0
  1082. checkwash-0.1.49/tests/cases/expectation_definition_membership_needle_pos.gwcase +26 -0
  1083. checkwash-0.1.49/tests/cases/expectation_definition_membership_producer_neg.gwcase +34 -0
  1084. checkwash-0.1.49/tests/cases/expectation_definition_module_constant_pos.gwcase +26 -0
  1085. checkwash-0.1.49/tests/cases/expectation_definition_module_constant_reformat_neg.gwcase +29 -0
  1086. checkwash-0.1.49/tests/cases/expectation_definition_module_constant_repaired_neg.gwcase +33 -0
  1087. checkwash-0.1.49/tests/cases/expectation_definition_module_constant_shared_neg.gwcase +24 -0
  1088. checkwash-0.1.49/tests/cases/expectation_definition_own_version_pos.gwcase +31 -0
  1089. checkwash-0.1.49/tests/cases/expectation_definition_package_repair_neg.gwcase +26 -0
  1090. checkwash-0.1.49/tests/cases/expectation_definition_package_unrelated_pos.gwcase +26 -0
  1091. checkwash-0.1.49/tests/cases/expectation_definition_reformatted_neg.gwcase +29 -0
  1092. checkwash-0.1.49/tests/cases/expectation_definition_repaired_neg.gwcase +36 -0
  1093. checkwash-0.1.49/tests/cases/expectation_definition_sequential_rebind_pos.gwcase +27 -0
  1094. checkwash-0.1.49/tests/cases/expectation_definition_shared_ctor_neg.gwcase +36 -0
  1095. checkwash-0.1.49/tests/cases/expectation_definition_via_helper_neg.gwcase +34 -0
  1096. checkwash-0.1.49/tests/cases/expectation_derived_inline_pos.gwcase +21 -0
  1097. checkwash-0.1.49/tests/cases/expectation_derived_pos.gwcase +22 -0
  1098. checkwash-0.1.49/tests/cases/expectation_derived_unittest_neg.gwcase +28 -0
  1099. checkwash-0.1.49/tests/cases/expectation_derived_unittest_pos.gwcase +27 -0
  1100. checkwash-0.1.49/tests/cases/expectation_derived_unpack_pos.gwcase +21 -0
  1101. checkwash-0.1.49/tests/cases/expectation_derived_unrelated_neg.gwcase +21 -0
  1102. checkwash-0.1.49/tests/cases/expectation_derived_walrus_pos.gwcase +21 -0
  1103. checkwash-0.1.49/tests/cases/expectation_fixture_return_pos.gwcase +32 -0
  1104. checkwash-0.1.49/tests/cases/expectation_named_constant_neg.gwcase +22 -0
  1105. checkwash-0.1.49/tests/cases/expectation_parametrize_column_pos.gwcase +30 -0
  1106. checkwash-0.1.49/tests/cases/expectation_parametrize_input_neg.gwcase +30 -0
  1107. checkwash-0.1.49/tests/cases/expectation_parametrized_neg.gwcase +25 -0
  1108. checkwash-0.1.49/tests/cases/expected_hardcoded_pos.gwcase +34 -0
  1109. checkwash-0.1.49/tests/cases/expected_hardcoded_trivial_neg.gwcase +27 -0
  1110. checkwash-0.1.49/tests/cases/expected_on_left_pos.gwcase +19 -0
  1111. checkwash-0.1.49/tests/cases/expected_value_rewritten_pos.gwcase +19 -0
  1112. checkwash-0.1.49/tests/cases/expected_value_with_repair_neg.gwcase +24 -0
  1113. checkwash-0.1.49/tests/cases/formatting_only_neg.gwcase +21 -0
  1114. checkwash-0.1.49/tests/cases/guard_constant_flip_pos.gwcase +41 -0
  1115. checkwash-0.1.49/tests/cases/guard_constant_honest_bump_neg.gwcase +36 -0
  1116. checkwash-0.1.49/tests/cases/guard_text_always_true_pos.gwcase +28 -0
  1117. checkwash-0.1.49/tests/cases/guard_text_honest_bump_neg.gwcase +28 -0
  1118. checkwash-0.1.49/tests/cases/guardrail_created_neg.gwcase +16 -0
  1119. checkwash-0.1.49/tests/cases/guardrail_rename_escape_pos.gwcase +15 -0
  1120. checkwash-0.1.49/tests/cases/guardrail_touched_pos.gwcase +13 -0
  1121. checkwash-0.1.49/tests/cases/guardrail_untouched_neg.gwcase +14 -0
  1122. checkwash-0.1.49/tests/cases/hardcoded_existing_value_neg.gwcase +27 -0
  1123. checkwash-0.1.49/tests/cases/hidden_unicode_absent_neg.gwcase +12 -0
  1124. checkwash-0.1.49/tests/cases/hidden_unicode_pos.gwcase +20 -0
  1125. checkwash-0.1.49/tests/cases/if_false_assertion_pos.gwcase +20 -0
  1126. checkwash-0.1.49/tests/cases/import_declared_neg.gwcase +25 -0
  1127. checkwash-0.1.49/tests/cases/import_no_manifest_neg.gwcase +15 -0
  1128. checkwash-0.1.49/tests/cases/import_unresolved_pos.gwcase +21 -0
  1129. checkwash-0.1.49/tests/cases/indirect_repair_neg.gwcase +33 -0
  1130. checkwash-0.1.49/tests/cases/inert_doc_change_pos.gwcase +27 -0
  1131. checkwash-0.1.49/tests/cases/js_expect_unchanged_neg.gwcase +14 -0
  1132. checkwash-0.1.49/tests/cases/js_expect_weakened_pos.gwcase +18 -0
  1133. checkwash-0.1.49/tests/cases/js_test_skipped_pos.gwcase +14 -0
  1134. checkwash-0.1.49/tests/cases/leaf_name_collision_pos.gwcase +33 -0
  1135. checkwash-0.1.49/tests/cases/listequal_style_neg.gwcase +26 -0
  1136. checkwash-0.1.49/tests/cases/live_branch_neg.gwcase +19 -0
  1137. checkwash-0.1.49/tests/cases/makefile_ignore_errors_pos.gwcase +22 -0
  1138. checkwash-0.1.49/tests/cases/merged_parametrize_neg.gwcase +38 -0
  1139. checkwash-0.1.49/tests/cases/mild_weaken_neg.gwcase +25 -0
  1140. checkwash-0.1.49/tests/cases/mild_weaken_reformat_neg.gwcase +25 -0
  1141. checkwash-0.1.49/tests/cases/mild_weaken_subject_changed_pos.gwcase +25 -0
  1142. checkwash-0.1.49/tests/cases/module_level_skip_pos.gwcase +23 -0
  1143. checkwash-0.1.49/tests/cases/moved_multiset_pos.gwcase +36 -0
  1144. checkwash-0.1.49/tests/cases/moved_string_edited_pos.gwcase +22 -0
  1145. checkwash-0.1.49/tests/cases/moved_test_file_neg.gwcase +17 -0
  1146. checkwash-0.1.49/tests/cases/moved_to_build_dir_pos.gwcase +19 -0
  1147. checkwash-0.1.49/tests/cases/moved_to_dot_dir_pos.gwcase +19 -0
  1148. checkwash-0.1.49/tests/cases/narrow_except_neg.gwcase +16 -0
  1149. checkwash-0.1.49/tests/cases/nested_pyproject_not_opaque_pos.gwcase +27 -0
  1150. checkwash-0.1.49/tests/cases/nested_scope_assertion_pos.gwcase +20 -0
  1151. checkwash-0.1.49/tests/cases/opaque_deleted_file_not_evidence_pos.gwcase +26 -0
  1152. checkwash-0.1.49/tests/cases/opaque_new_file_not_evidence_pos.gwcase +27 -0
  1153. checkwash-0.1.49/tests/cases/oracle_crossfile_import_neg.gwcase +39 -0
  1154. checkwash-0.1.49/tests/cases/oracle_crossfile_uncalled_pos.gwcase +33 -0
  1155. checkwash-0.1.49/tests/cases/oracle_fixture_checker_neg.gwcase +41 -0
  1156. checkwash-0.1.49/tests/cases/oracle_fixture_fanout_dedup.gwcase +52 -0
  1157. checkwash-0.1.49/tests/cases/oracle_fixture_teardown_refused_trade.gwcase +47 -0
  1158. checkwash-0.1.49/tests/cases/oracle_fixture_unrequested_pos.gwcase +36 -0
  1159. checkwash-0.1.49/tests/cases/oracle_freeze_pos.gwcase +37 -0
  1160. checkwash-0.1.49/tests/cases/oracle_helper_renamed_neg.gwcase +30 -0
  1161. checkwash-0.1.49/tests/cases/oracle_helper_uncalled_pos.gwcase +31 -0
  1162. checkwash-0.1.49/tests/cases/oracle_moved_into_helper_neg.gwcase +34 -0
  1163. checkwash-0.1.49/tests/cases/oracle_nested_never_invoked_pos.gwcase +28 -0
  1164. checkwash-0.1.49/tests/cases/package_repair_behaviour_change_neg.gwcase +26 -0
  1165. checkwash-0.1.49/tests/cases/package_repair_needs_modified_symbol_pos.gwcase +37 -0
  1166. checkwash-0.1.49/tests/cases/package_repair_needs_prod_pos.gwcase +18 -0
  1167. checkwash-0.1.49/tests/cases/package_repair_neg.gwcase +26 -0
  1168. checkwash-0.1.49/tests/cases/param_marks_skip_pos.gwcase +32 -0
  1169. checkwash-0.1.49/tests/cases/parametrize_rows_pos.gwcase +38 -0
  1170. checkwash-0.1.49/tests/cases/plain_class_not_collected_neg.gwcase +20 -0
  1171. checkwash-0.1.49/tests/cases/polarity_inverted_pos.gwcase +19 -0
  1172. checkwash-0.1.49/tests/cases/precommit_bump_neg.gwcase +18 -0
  1173. checkwash-0.1.49/tests/cases/prod_reorder_pos.gwcase +33 -0
  1174. checkwash-0.1.49/tests/cases/prod_symbol_added_only_pos.gwcase +32 -0
  1175. checkwash-0.1.49/tests/cases/prod_symbol_removed_dynamic_import_neg.gwcase +29 -0
  1176. checkwash-0.1.49/tests/cases/prod_symbol_removed_local_rewrite_pos.gwcase +47 -0
  1177. checkwash-0.1.49/tests/cases/prod_symbol_removed_marker_pos.gwcase +33 -0
  1178. checkwash-0.1.49/tests/cases/prod_symbol_removed_neg.gwcase +47 -0
  1179. checkwash-0.1.49/tests/cases/prod_symbol_removed_param_row_neg.gwcase +34 -0
  1180. checkwash-0.1.49/tests/cases/prod_symbol_removed_unrelated_pos.gwcase +20 -0
  1181. checkwash-0.1.49/tests/cases/pytest_ini_harmless_neg.gwcase +11 -0
  1182. checkwash-0.1.49/tests/cases/pytest_ini_narrowed_pos.gwcase +12 -0
  1183. checkwash-0.1.49/tests/cases/pytestmark_skip_pos.gwcase +19 -0
  1184. checkwash-0.1.49/tests/cases/raises_match_fold_neg.gwcase +26 -0
  1185. checkwash-0.1.49/tests/cases/raises_swap_pos.gwcase +24 -0
  1186. checkwash-0.1.49/tests/cases/relocation_assertionless_unit_neg.gwcase +42 -0
  1187. checkwash-0.1.49/tests/cases/relocation_into_alwaystrue_skipif_pos.gwcase +42 -0
  1188. checkwash-0.1.49/tests/cases/relocation_into_compat_gated_unit_neg.gwcase +44 -0
  1189. checkwash-0.1.49/tests/cases/relocation_into_skipped_unit_pos.gwcase +36 -0
  1190. checkwash-0.1.49/tests/cases/rename_into_skipped_stub_pos.gwcase +23 -0
  1191. checkwash-0.1.49/tests/cases/repair_via_helper_neg.gwcase +32 -0
  1192. checkwash-0.1.49/tests/cases/repair_via_helper_unrelated_pos.gwcase +32 -0
  1193. checkwash-0.1.49/tests/cases/root_import_same_module_neg.gwcase +31 -0
  1194. checkwash-0.1.49/tests/cases/root_import_sibling_sameleaf_pos.gwcase +31 -0
  1195. checkwash-0.1.49/tests/cases/row13_exact_to_approx_pos.gwcase +23 -0
  1196. checkwash-0.1.49/tests/cases/row14_sorted_wrap_pos.gwcase +19 -0
  1197. checkwash-0.1.49/tests/cases/row17_mybuild_dir_neg.gwcase +19 -0
  1198. checkwash-0.1.49/tests/cases/row20_vacuous_padding_pos.gwcase +27 -0
  1199. checkwash-0.1.49/tests/cases/row21_positional_tolerance_pos.gwcase +23 -0
  1200. checkwash-0.1.49/tests/cases/row36_file_scoped_no_sibling_evidence_pos.gwcase +38 -0
  1201. checkwash-0.1.49/tests/cases/runner_bat_swallow_pos.gwcase +25 -0
  1202. checkwash-0.1.49/tests/cases/runner_build_makefile_neg.gwcase +24 -0
  1203. checkwash-0.1.49/tests/cases/runner_common_mak_pos.gwcase +25 -0
  1204. checkwash-0.1.49/tests/cases/runner_justfile_capital_pos.gwcase +25 -0
  1205. checkwash-0.1.49/tests/cases/runner_justfile_nested_pos.gwcase +25 -0
  1206. checkwash-0.1.49/tests/cases/runner_makefile_include_pos.gwcase +25 -0
  1207. checkwash-0.1.49/tests/cases/runner_one_hop_build_neg.gwcase +27 -0
  1208. checkwash-0.1.49/tests/cases/runner_one_hop_pos.gwcase +28 -0
  1209. checkwash-0.1.49/tests/cases/runner_opaque_native_neg.gwcase +26 -0
  1210. checkwash-0.1.49/tests/cases/runner_ps1_swallow_pos.gwcase +26 -0
  1211. checkwash-0.1.49/tests/cases/runner_script_cannot_disarm_pos.gwcase +33 -0
  1212. checkwash-0.1.49/tests/cases/runner_script_errexit_dropped_pos.gwcase +18 -0
  1213. checkwash-0.1.49/tests/cases/runner_script_errexit_longform_pos.gwcase +22 -0
  1214. checkwash-0.1.49/tests/cases/runner_script_errexit_modernised_neg.gwcase +22 -0
  1215. checkwash-0.1.49/tests/cases/runner_script_extensionless_pos.gwcase +24 -0
  1216. checkwash-0.1.49/tests/cases/runner_script_honest_edit_neg.gwcase +15 -0
  1217. checkwash-0.1.49/tests/cases/runner_script_removed_neg.gwcase +13 -0
  1218. checkwash-0.1.49/tests/cases/runner_script_set_plus_e_pos.gwcase +17 -0
  1219. checkwash-0.1.49/tests/cases/runner_script_suite_removed_pos.gwcase +20 -0
  1220. checkwash-0.1.49/tests/cases/runner_script_switched_runner_neg.gwcase +16 -0
  1221. checkwash-0.1.49/tests/cases/runner_script_weakened_pos.gwcase +18 -0
  1222. checkwash-0.1.49/tests/cases/runner_sh_or_echo_pos.gwcase +25 -0
  1223. checkwash-0.1.49/tests/cases/sacrificial_skip_pos.gwcase +29 -0
  1224. checkwash-0.1.49/tests/cases/same_unit_rewrite_neg.gwcase +27 -0
  1225. checkwash-0.1.49/tests/cases/scope_drift_absent_neg.gwcase +12 -0
  1226. checkwash-0.1.49/tests/cases/scope_drift_pos.gwcase +27 -0
  1227. checkwash-0.1.49/tests/cases/scope_respected_neg.gwcase +33 -0
  1228. checkwash-0.1.49/tests/cases/self_compare_identity_pos.gwcase +21 -0
  1229. checkwash-0.1.49/tests/cases/self_compare_pos.gwcase +19 -0
  1230. checkwash-0.1.49/tests/cases/skipif_condition_flipped_pos.gwcase +25 -0
  1231. checkwash-0.1.49/tests/cases/skiptest_call_pos.gwcase +24 -0
  1232. checkwash-0.1.49/tests/cases/snapshot_cochange_pos.gwcase +15 -0
  1233. checkwash-0.1.49/tests/cases/snapshot_with_test_change_neg.gwcase +31 -0
  1234. checkwash-0.1.49/tests/cases/split_rename_genuine_neg.gwcase +23 -0
  1235. checkwash-0.1.49/tests/cases/split_rename_mass_pos.gwcase +40 -0
  1236. checkwash-0.1.49/tests/cases/srclayout_repair_evidence_neg.gwcase +24 -0
  1237. checkwash-0.1.49/tests/cases/srclayout_sibling_module_pos.gwcase +25 -0
  1238. checkwash-0.1.49/tests/cases/stub_change_pos.gwcase +22 -0
  1239. checkwash-0.1.49/tests/cases/subject_argument_replaced_neg.gwcase +22 -0
  1240. checkwash-0.1.49/tests/cases/subject_argument_wrap_pos.gwcase +21 -0
  1241. checkwash-0.1.49/tests/cases/subject_hoisted_plain_neg.gwcase +21 -0
  1242. checkwash-0.1.49/tests/cases/subject_hoisted_wrap_pos.gwcase +22 -0
  1243. checkwash-0.1.49/tests/cases/subject_normalized_pos.gwcase +22 -0
  1244. checkwash-0.1.49/tests/cases/subject_normalized_repaired_neg.gwcase +26 -0
  1245. checkwash-0.1.49/tests/cases/suppression_added_pos.gwcase +11 -0
  1246. checkwash-0.1.49/tests/cases/suppression_unchanged_neg.gwcase +19 -0
  1247. checkwash-0.1.49/tests/cases/tautology_pos.gwcase +18 -0
  1248. checkwash-0.1.49/tests/cases/tdd_shared_constant_neg.gwcase +25 -0
  1249. checkwash-0.1.49/tests/cases/test_attr_false_class_pos.gwcase +23 -0
  1250. checkwash-0.1.49/tests/cases/test_attr_false_pos.gwcase +21 -0
  1251. checkwash-0.1.49/tests/cases/test_deleted_pos.gwcase +22 -0
  1252. checkwash-0.1.49/tests/cases/test_disabled_skip_pos.gwcase +24 -0
  1253. checkwash-0.1.49/tests/cases/test_patches_subject_mock_patch_pos.gwcase +27 -0
  1254. checkwash-0.1.49/tests/cases/test_patches_subject_new_test_neg.gwcase +31 -0
  1255. checkwash-0.1.49/tests/cases/test_patches_subject_pos.gwcase +25 -0
  1256. checkwash-0.1.49/tests/cases/test_patches_subject_stdlib_neg.gwcase +30 -0
  1257. checkwash-0.1.49/tests/cases/test_patches_subject_unrelated_attr_neg.gwcase +26 -0
  1258. checkwash-0.1.49/tests/cases/test_patches_subject_via_local_pos.gwcase +27 -0
  1259. checkwash-0.1.49/tests/cases/test_split_neg.gwcase +26 -0
  1260. checkwash-0.1.49/tests/cases/tolerance_absent_neg.gwcase +23 -0
  1261. checkwash-0.1.49/tests/cases/tolerance_loosened_pos.gwcase +21 -0
  1262. checkwash-0.1.49/tests/cases/tolerance_places_pos.gwcase +23 -0
  1263. checkwash-0.1.49/tests/cases/tolerance_second_kind_pos.gwcase +23 -0
  1264. checkwash-0.1.49/tests/cases/tolerance_snan_neg.gwcase +24 -0
  1265. checkwash-0.1.49/tests/cases/tolerance_tightened_neg.gwcase +21 -0
  1266. checkwash-0.1.49/tests/cases/trivial_prod_change_pos.gwcase +28 -0
  1267. checkwash-0.1.49/tests/cases/tuple_assert_pos.gwcase +19 -0
  1268. checkwash-0.1.49/tests/cases/unfalsifiable_padding_pos.gwcase +23 -0
  1269. checkwash-0.1.49/tests/cases/unicode_offset_tautology_pos.gwcase +19 -0
  1270. checkwash-0.1.49/tests/cases/unit_moved_credit_spent_once_pos.gwcase +34 -0
  1271. checkwash-0.1.49/tests/cases/unittest_class_aliased_base_pos.gwcase +27 -0
  1272. checkwash-0.1.49/tests/cases/unittest_class_not_named_test_pos.gwcase +25 -0
  1273. checkwash-0.1.49/tests/cases/unittest_isnone_spelling_neg.gwcase +30 -0
  1274. checkwash-0.1.49/tests/cases/unittest_isnone_true_inversion_pos.gwcase +30 -0
  1275. checkwash-0.1.49/tests/cases/unittest_len_modernize_neg.gwcase +30 -0
  1276. checkwash-0.1.49/tests/cases/unittest_literal_first_pos.gwcase +32 -0
  1277. checkwash-0.1.49/tests/cases/unittest_self_compare_pos.gwcase +24 -0
  1278. checkwash-0.1.49/tests/cases/unittest_trivial_pad_pos.gwcase +35 -0
  1279. checkwash-0.1.49/tests/cases/unittest_weaken_pos.gwcase +23 -0
  1280. checkwash-0.1.49/tests/cases/unparseable_prod_still_opaque_neg.gwcase +30 -0
  1281. checkwash-0.1.49/tests/cases/unparseable_self_inflicted_pos.gwcase +29 -0
  1282. checkwash-0.1.49/tests/cases/unparseable_test_new_neg.gwcase +9 -0
  1283. checkwash-0.1.49/tests/cases/unparseable_test_regressed_pos.gwcase +20 -0
  1284. checkwash-0.1.49/tests/conftest.py +23 -0
  1285. checkwash-0.1.49/tests/e2e/test_cli.py +608 -0
  1286. checkwash-0.1.49/tests/gates/README.md +32 -0
  1287. checkwash-0.1.49/tests/gates/test_perf.py +73 -0
  1288. checkwash-0.1.49/tests/gates/test_recorded_arms.py +132 -0
  1289. checkwash-0.1.49/tests/gates/test_refactor_corpus.py +107 -0
  1290. checkwash-0.1.49/tests/gates/test_tamper_corpus.py +127 -0
  1291. checkwash-0.1.49/tests/test_action_comments.py +44 -0
  1292. checkwash-0.1.49/tests/test_astutil.py +34 -0
  1293. checkwash-0.1.49/tests/test_bench_command.py +89 -0
  1294. checkwash-0.1.49/tests/test_cases_runner.py +59 -0
  1295. checkwash-0.1.49/tests/test_cli_typos.py +32 -0
  1296. checkwash-0.1.49/tests/test_compare_harness.py +69 -0
  1297. checkwash-0.1.49/tests/test_demo_command.py +42 -0
  1298. checkwash-0.1.49/tests/test_demo_reproduces.py +43 -0
  1299. checkwash-0.1.49/tests/test_detector_coverage.py +121 -0
  1300. checkwash-0.1.49/tests/test_determinism.py +90 -0
  1301. checkwash-0.1.49/tests/test_diffalign.py +62 -0
  1302. checkwash-0.1.49/tests/test_docs_links.py +60 -0
  1303. checkwash-0.1.49/tests/test_doctor.py +554 -0
  1304. checkwash-0.1.49/tests/test_e5_split.py +20 -0
  1305. checkwash-0.1.49/tests/test_finding_shape.py +81 -0
  1306. checkwash-0.1.49/tests/test_frontend.py +277 -0
  1307. checkwash-0.1.49/tests/test_js_frontend.py +28 -0
  1308. checkwash-0.1.49/tests/test_oracle_rules_pinned.py +84 -0
  1309. checkwash-0.1.49/tests/test_packaging.py +410 -0
  1310. checkwash-0.1.49/tests/test_perf_git.py +139 -0
  1311. checkwash-0.1.49/tests/test_satellite_boundary.py +30 -0
  1312. checkwash-0.1.49/tests/test_spec_roles_pinned.py +91 -0
  1313. checkwash-0.1.49/tests/test_state_claims.py +239 -0
  1314. checkwash-0.1.49/tests/test_threatmodel_pinned.py +131 -0
  1315. checkwash-0.1.49/tests/test_zipapp.py +119 -0
  1316. checkwash-0.1.49/tools/emit_corpus.py +61 -0
  1317. checkwash-0.1.49/tools/qualify_zipapp.py +189 -0
  1318. checkwash-0.1.49/uv.lock +78 -0
@@ -0,0 +1,8 @@
1
+ # Byte-stability matters to a tool that promises byte-identical verdicts:
2
+ # every text file is committed and checked out with LF, on every OS.
3
+ * text=auto eol=lf
4
+ *.py text eol=lf
5
+ *.gwcase text eol=lf
6
+ *.md text eol=lf
7
+ *.toml text eol=lf
8
+ *.yml text eol=lf
@@ -0,0 +1,26 @@
1
+ # The two templates above are the only two reports this project is really
2
+ # asking for. Everything else it can find itself; those two it cannot.
3
+ blank_issues_enabled: true
4
+ contact_links:
5
+ - name: Check the known-failures page first
6
+ url: https://github.com/taipei49314/greenwash/blob/main/benchmarks/FAILURES.md
7
+ about: >-
8
+ Every bypass that is still open, every human commit greenwash blocks by
9
+ mistake, and every cheat a real agent got past it — one generated page.
10
+ If what you found is already there, you have confirmed a known hole
11
+ rather than found a new one, which is still worth saying, and the row
12
+ number makes it a two-line issue.
13
+ - name: What it is documented as unable to do
14
+ url: https://github.com/taipei49314/greenwash/blob/main/THREATMODEL.md
15
+ about: >-
16
+ Rewriting production so a weak test passes honestly is undecidable at
17
+ the diff layer and out of scope by design; a production file greenwash
18
+ cannot read suppresses escalation for the whole diff. Neither is a bug
19
+ report, and both are measured rather than waved away.
20
+ - name: What is frozen and what will change under you
21
+ url: https://github.com/taipei49314/greenwash/blob/main/docs/stability.md
22
+ about: >-
23
+ Before reporting that an upgrade started blocking something: detector
24
+ coverage grows on purpose, and growth can newly block. Whether that is a
25
+ closed bypass or a shipped false positive is exactly the distinction
26
+ worth an issue — the project has done both, in one day.
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: greenwash blocked honest work
3
+ about: greenwash blocked a commit that did not tamper with anything (a false positive)
4
+ title: "[false block] "
5
+ labels: false-positive
6
+ ---
7
+
8
+ **What the commit actually did**
9
+ <!-- the honest change: fixed a bug, refactored a helper, bumped a dep, ... -->
10
+
11
+ **The diff (or the relevant part)**
12
+ ```diff
13
+
14
+ ```
15
+
16
+ **What greenwash blocked it with**
17
+ <!-- paste `greenwash check --format json`, esp. the rule and escalators -->
18
+
19
+ **Why it's a false positive**
20
+ <!-- the oracle is not actually weaker because... -->
21
+
22
+ ---
23
+ Every false positive we've fixed came from a real diff like this one. It'll
24
+ become a negative fixture so it can never regress. Reporter credit lands
25
+ in `benchmarks/FAILURES.md` (External credits) after the quarterly review
26
+ in `docs/cheat-cadence.md`.
@@ -0,0 +1,36 @@
1
+ ---
2
+ name: Send us a cheat greenwash missed
3
+ about: A test-tampering diff that greenwash let through (a false negative)
4
+ title: "[missed cheat] "
5
+ labels: cheat-of-the-week, false-negative
6
+ ---
7
+
8
+ **What the agent did instead of fixing the bug**
9
+ <!-- one line: "widened the tolerance", "deleted the assertion", ... -->
10
+
11
+ **The test file, before:**
12
+ ```python
13
+
14
+ ```
15
+
16
+ **The test file, after:**
17
+ ```python
18
+
19
+ ```
20
+
21
+ **The production file, if it matters (before / after):**
22
+ ```python
23
+
24
+ ```
25
+
26
+ **What greenwash said**
27
+ <!-- paste `greenwash check --format json` output, or just "verdict: pass" -->
28
+
29
+ **Why this is tampering and not an honest fix**
30
+ <!-- the bug is still there because... -->
31
+
32
+ ---
33
+ By filing this you agree it can become a regression fixture in the public
34
+ corpus. You'll be credited in the fixture header and, once triaged, in
35
+ the External credits table of `benchmarks/FAILURES.md`. Incoming reports
36
+ are reviewed quarterly — see `docs/cheat-cadence.md`.
@@ -0,0 +1,17 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ groups:
8
+ actions:
9
+ patterns: ["*"]
10
+ - package-ecosystem: "pip"
11
+ directory: "/"
12
+ schedule:
13
+ interval: "weekly"
14
+ groups:
15
+ minor-and-patch:
16
+ patterns: ["*"]
17
+ update-types: ["minor", "patch"]
@@ -0,0 +1,131 @@
1
+ name: ci
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ jobs:
12
+ test:
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ os: [ubuntu-latest, windows-latest, macos-latest]
17
+ # The README claims byte-identical verdicts across 3.11-3.13, so all
18
+ # three are in the matrix. A claim whose gate does not cover it is
19
+ # exactly what this tool exists to catch.
20
+ python: ["3.11", "3.12", "3.13"]
21
+ runs-on: ${{ matrix.os }}
22
+ steps:
23
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
24
+ with:
25
+ # Tags are needed by the release-tag gate; a shallow checkout made
26
+ # that test silently return early (reader audit).
27
+ fetch-depth: 0
28
+ persist-credentials: false
29
+ - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
30
+ with:
31
+ python-version: ${{ matrix.python }}
32
+ - run: pip install -e ".[dev]"
33
+ - run: pytest
34
+ - name: emit corpus findings (determinism artifact)
35
+ shell: bash
36
+ env:
37
+ PYTHONUTF8: "1" # artifact bytes must not depend on runner locale
38
+ run: python tools/emit_corpus.py > corpus-findings.json
39
+ - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
40
+ with:
41
+ name: corpus-${{ matrix.os }}-py${{ matrix.python }}
42
+ path: corpus-findings.json
43
+
44
+ dogfood:
45
+ # greenwash runs on its own changes. The judge gets judged.
46
+ #
47
+ # This job used to be `if: github.event_name == 'pull_request'`, and this
48
+ # repository has never had a pull request — so across every run in its
49
+ # history it reported "skipped" and action/action.yml had still never been
50
+ # executed once, while the README told people to use it. A previous audit
51
+ # asked for the action to be dogfooded and the fix that shipped changed
52
+ # *how* the job invoked it without noticing the job never ran at all.
53
+ # Green because it did not run is the failure mode this project keeps
54
+ # repeating; on a push there is a perfectly good diff to check.
55
+ runs-on: ubuntu-latest
56
+ steps:
57
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
58
+ with:
59
+ fetch-depth: 0
60
+ persist-credentials: false
61
+ - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
62
+ with:
63
+ python-version: "3.12"
64
+ # Exercise the published composite action itself, not just the CLI —
65
+ # otherwise action/action.yml ships untested (reader audit 2026-08-02).
66
+ - uses: ./action
67
+ with:
68
+ base: ${{ github.event.pull_request.base.sha || 'HEAD~1' }}
69
+
70
+ install-from-tag:
71
+ # What a *visitor* gets, not what the checkout has. dogfood runs ./action
72
+ # from the working tree, so a stale action.yml (or hook definition) on the
73
+ # advertised tag would pass every other gate while users installed an old
74
+ # integration layer (owner review 2026-08-04). This installs the exact
75
+ # command the README hands out and runs it.
76
+ runs-on: ubuntu-latest
77
+ steps:
78
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
79
+ with:
80
+ fetch-depth: 0
81
+ persist-credentials: false
82
+ - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
83
+ with:
84
+ python-version: "3.12"
85
+ - name: install the advertised tag from git, exactly as the README says
86
+ id: install_tag
87
+ shell: bash
88
+ run: |
89
+ set -euo pipefail
90
+ tag="v$(python -c 'import tomllib;print(tomllib.load(open("pyproject.toml","rb"))["project"]["version"])')"
91
+ if ! git rev-parse --verify "refs/tags/$tag" >/dev/null 2>&1; then
92
+ echo "PRE_TAG_CANDIDATE: $tag not cut yet — defer visitor install-from-tag"
93
+ echo "mode=pretag" >> "$GITHUB_OUTPUT"
94
+ exit 0
95
+ fi
96
+ echo "mode=posttag" >> "$GITHUB_OUTPUT"
97
+ pip install "git+file://$PWD@$tag"
98
+ - name: the installed build must run, replay the demo, and gate this push
99
+ if: steps.install_tag.outputs.mode == 'posttag'
100
+ shell: bash
101
+ env:
102
+ PYTHONUTF8: "1"
103
+ run: |
104
+ set -euo pipefail
105
+ greenwash --version
106
+ greenwash demo > /dev/null
107
+ # The installed build gates this push exactly as dogfood does from
108
+ # the checkout — its exit code counts. The first draft of this step
109
+ # swallowed that exit code with a shell or-fallback, and greenwash
110
+ # blocked the diff: E6 read the CI change as a weakened test
111
+ # command. It was right, and this wording exists because the tool
112
+ # corrected its author.
113
+ greenwash check HEAD~1..HEAD --repo .
114
+
115
+ byte-compare:
116
+ # The cross-OS determinism gate: every OS/Python combination must emit
117
+ # byte-identical corpus findings (SPEC §8).
118
+ needs: test
119
+ runs-on: ubuntu-latest
120
+ steps:
121
+ - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
122
+ with:
123
+ path: corpus
124
+ - name: all artifacts must be byte-identical
125
+ # Across every OS AND every Python version in the matrix. Verified
126
+ # locally 2026-07-31 on 3.11.15 / 3.12.13 / 3.13.14 (identical, sha
127
+ # 5bd75e8d…); this job keeps it true on Linux/macOS/Windows too.
128
+ run: |
129
+ sha256sum corpus/*/corpus-findings.json
130
+ count=$(sha256sum corpus/*/corpus-findings.json | awk '{print $1}' | sort -u | wc -l)
131
+ test "$count" = "1"
@@ -0,0 +1,18 @@
1
+ # .github/workflows/greenwash.yml
2
+ on: [pull_request]
3
+
4
+ permissions:
5
+ contents: read
6
+
7
+ jobs:
8
+ greenwash:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
12
+ with:
13
+ fetch-depth: 0
14
+ persist-credentials: false
15
+ - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
16
+ with:
17
+ python-version: "3.12"
18
+ - uses: taipei49314/greenwash/action@bda9f37e97f2bb9950413ceec9fee91f48985b67 # v0.1.48
@@ -0,0 +1,127 @@
1
+ name: release
2
+
3
+ # Two triggers, both deliberate:
4
+ # workflow_dispatch — build the artifacts and look at them, publishing nothing
5
+ # release: published — attach the artifacts to a release a human just cut
6
+ #
7
+ # Nothing here fires on a push. Cutting a release is a decision, and this
8
+ # project's own history is the argument for making it one: a tag once shipped
9
+ # pointing two fixes behind main, and visitors read the fixed docs while
10
+ # installing the unfixed engine.
11
+ on:
12
+ workflow_dispatch:
13
+ release:
14
+ types: [published]
15
+
16
+ permissions:
17
+ contents: read
18
+
19
+ jobs:
20
+ build:
21
+ runs-on: ubuntu-latest
22
+ permissions:
23
+ contents: write # only to attach assets to an already-published release
24
+ steps:
25
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
26
+ with:
27
+ fetch-depth: 0
28
+ persist-credentials: false
29
+ - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
30
+ with:
31
+ python-version: "3.12"
32
+ - run: pip install build twine
33
+
34
+ - name: the version being built must match the tag, when there is one
35
+ if: github.event_name == 'release'
36
+ shell: bash
37
+ env:
38
+ PYTHONUTF8: "1"
39
+ RELEASE_TAG: ${{ github.event.release.tag_name }}
40
+ run: |
41
+ set -euo pipefail
42
+ version="v$(python -c 'import tomllib;print(tomllib.load(open("pyproject.toml","rb"))["project"]["version"])')"
43
+ test "$version" = "$RELEASE_TAG"
44
+
45
+ - name: build sdist and wheel
46
+ run: python -m build
47
+
48
+ - name: the sdist and wheel must be well-formed
49
+ run: twine check dist/*
50
+
51
+ # Zero runtime dependencies and one console entry point make a zipapp a
52
+ # real distribution channel, not a trick: one file, no install, no
53
+ # virtualenv, no network. `tests/test_zipapp.py` gates it on every push;
54
+ # this builds the artifact people actually download.
55
+ - name: build the single-file zipapp
56
+ shell: bash
57
+ env:
58
+ PYTHONUTF8: "1"
59
+ run: |
60
+ set -euo pipefail
61
+ python -m zipapp src -m "greenwash.zipapp_entry:run" -o dist/greenwash.pyz -c
62
+ python dist/greenwash.pyz --version
63
+ python dist/greenwash.pyz demo > /dev/null
64
+ python tools/qualify_zipapp.py dist/greenwash.pyz
65
+ ls -l dist/
66
+
67
+ - name: a fresh install of the wheel must run, replay the demo, and check a repo
68
+ shell: bash
69
+ env:
70
+ PYTHONUTF8: "1"
71
+ run: |
72
+ set -euo pipefail
73
+ python -m venv /tmp/fresh
74
+ /tmp/fresh/bin/pip install --quiet dist/*.whl
75
+ /tmp/fresh/bin/pip freeze | tee /tmp/frozen.txt
76
+ # Zero runtime dependencies is a claim on the README, so the frozen
77
+ # environment must contain the checkwash distribution and nothing else.
78
+ test "$(grep -civ '^checkwash' /tmp/frozen.txt)" = "0"
79
+ /tmp/fresh/bin/greenwash --version
80
+ /tmp/fresh/bin/checkwash --version
81
+ /tmp/fresh/bin/greenwash demo > /dev/null
82
+ /tmp/fresh/bin/greenwash check HEAD~1..HEAD --repo .
83
+
84
+ - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
85
+ with:
86
+ name: dist
87
+ path: dist/
88
+
89
+ - name: attach the artifacts to the release
90
+ if: github.event_name == 'release'
91
+ env:
92
+ GH_TOKEN: ${{ github.token }}
93
+ RELEASE_TAG: ${{ github.event.release.tag_name }}
94
+ run: gh release upload "$RELEASE_TAG" dist/* --clobber
95
+
96
+ pypi:
97
+ # Deliberately gated, on a repository *variable* rather than on the
98
+ # environment. The first version of this job was gated only by
99
+ # `environment: pypi` and a comment claiming it would be skipped until a
100
+ # human created that environment. That claim was false: GitHub creates an
101
+ # environment automatically the first time a job references one, so on the
102
+ # v0.1.13 release the job ran, found no trusted publisher registered on
103
+ # PyPI, and failed a release that was otherwise entirely fine (D-032).
104
+ #
105
+ # `vars.PYPI_ENABLED` is not auto-created by anything, so this is a gate
106
+ # that is actually closed. Publishing needs all three, in this order:
107
+ # 1. register greenwash as a trusted publisher on PyPI, for this
108
+ # repository and this workflow;
109
+ # 2. set the repository variable PYPI_ENABLED to `true`;
110
+ # 3. keep the `pypi` environment for its deployment protection rules.
111
+ # No token is stored anywhere by anyone; trusted publishing exchanges a
112
+ # short-lived OIDC identity instead. Until (2), this job is skipped and
113
+ # the release is GitHub-only, which is what the README promises.
114
+ needs: build
115
+ if: github.event_name == 'release' && vars.PYPI_ENABLED == 'true'
116
+ runs-on: ubuntu-latest
117
+ environment: pypi
118
+ permissions:
119
+ id-token: write
120
+ steps:
121
+ - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
122
+ with:
123
+ name: dist
124
+ path: dist/
125
+ - name: the zipapp is a GitHub asset, not a PyPI one
126
+ run: rm -f dist/greenwash.pyz
127
+ - uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
@@ -0,0 +1,8 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .venv/
4
+ dist/
5
+ build/
6
+ *.egg-info/
7
+ .pytest_cache/
8
+ .greenwash/session/
@@ -0,0 +1,14 @@
1
+ # Consumers reference this repo in their .pre-commit-config.yaml:
2
+ #
3
+ # repos:
4
+ # - repo: https://github.com/taipei49314/greenwash
5
+ # rev: <tag>
6
+ # hooks:
7
+ # - id: greenwash
8
+ - id: greenwash
9
+ name: greenwash (oracle-tampering tripwire)
10
+ description: deterministic detector for diffs that weaken the test oracle
11
+ entry: greenwash check --format term
12
+ language: python
13
+ pass_filenames: false
14
+ always_run: true
@@ -0,0 +1,21 @@
1
+ # Collaboration protocol (humans and coding agents)
2
+
3
+ The judge is immutable; the player runs free.
4
+
5
+ ## Agent-writable
6
+ - Detector implementations and their `.gwcase` fixtures (labels reviewed by a human before merge).
7
+ - Frontend syntax-coverage work, adapters, report rendering, packaging.
8
+
9
+ ## Agent-READ-ONLY (changes only by the human maintainer)
10
+ - `SPEC.md`, `THREATMODEL.md`, `DECISIONS.md`
11
+ - `tests/gates/**`
12
+ - Escalation policy (`gating.py` severity table), strength lattice
13
+ (`ir/strength.py` values), alignment parameters.
14
+
15
+ ## Rules
16
+ 1. One round = one detector or one named defect. Atomic commit; the commit
17
+ message carries the gate output summary.
18
+ 2. Never modify an existing fixture's expected output. If you believe the
19
+ expectation is wrong, open an issue and stop.
20
+ 3. Read `STATE.md` first when taking over.
21
+ 4. Every PR runs greenwash on itself (dogfood, from M2).
@@ -0,0 +1,63 @@
1
+ # Contributing to greenwash
2
+
3
+ The most valuable thing you can send is a **cheat greenwash missed** or a
4
+ **block it got wrong**. You do not need to write any code to do it.
5
+
6
+ ## Send us a cheat (no code required)
7
+
8
+ Saw an agent make CI green by tampering with a test, and greenwash would have
9
+ let it through? Open an issue with the before/after of the test file (and the
10
+ production file if relevant). We turn it into a regression fixture, credit you
11
+ in the fixture header, and it joins the corpus that every future release is
12
+ measured against. This is how the detector's coverage grows — the moat is
13
+ built by the people it protects.
14
+
15
+ The same goes the other way: if greenwash **blocked a commit that was
16
+ honest**, that is a false positive and we want it just as much. Every one we
17
+ have fixed came from a real diff, and each is now a negative fixture.
18
+
19
+ Issue templates for both are in `.github/ISSUE_TEMPLATE/`.
20
+ Reports are reviewed quarterly (`docs/cheat-cadence.md`); a credited
21
+ external row lands in `benchmarks/FAILURES.md`.
22
+
23
+ ## The one rule that is not negotiable
24
+
25
+ Every measurement in this project is reproducible and every claim has a test.
26
+ That is not a style preference; it is the reason anyone should trust a tool
27
+ whose whole job is to catch dishonest shortcuts.
28
+
29
+ - **No number ships without a harness.** Precision comes from
30
+ `greenwash sweep` over real history; recall from the decoy corpus
31
+ (`benchmarks/decoy/`). If you change a detector, re-run both and put the
32
+ numbers in the PR. "It looks right" is how the tool caught 0 of 12 real
33
+ cheats once — see `benchmarks/decoy/README.md`.
34
+ - **Every detector ships positive and negative `.gwcase` fixtures.** The
35
+ coverage gate (`tests/test_detector_coverage.py`) enforces it. A detector
36
+ with no negative fixture is an unbounded false-positive risk.
37
+ - **`SPEC.md`, `THREATMODEL.md`, and `tests/gates/` are the judge.** They are
38
+ changed deliberately by a human, with a `DECISIONS.md` entry, never as a
39
+ side effect of making a test pass. (greenwash exists to catch exactly that
40
+ move; the project holds itself to it.)
41
+
42
+ ## Adding a detector
43
+
44
+ A detector is a pure function `f(IR) -> list[Finding]` at base severity
45
+ `warn`; `gating.py` decides escalation. Register it in
46
+ `src/greenwash/detectors/__init__.py`, and ship at least one positive and one
47
+ negative fixture in `tests/cases/` in the same PR. Read `SPEC.md §4-§5` first
48
+ so its rule ID and severity fit the frozen model.
49
+
50
+ ## Adding a language
51
+
52
+ The IR (`SPEC.md`) is language-neutral by design. A new frontend that emits
53
+ IR inherits every existing detector. v0.1 is Python-only; the frontend
54
+ protocol is `src/greenwash/frontends/`.
55
+
56
+ ## Running the suite
57
+
58
+ ```bash
59
+ pip install -e ".[dev]"
60
+ pytest # 478 tests: fixtures, e2e, perf and coverage gates
61
+ greenwash demo # sanity: 8 real cheats blocked, offline
62
+ greenwash bench --local # in-clone reproduce; omit --local to require sweep clones
63
+ ```