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.
- checkwash-0.1.49/.gitattributes +8 -0
- checkwash-0.1.49/.github/ISSUE_TEMPLATE/config.yml +26 -0
- checkwash-0.1.49/.github/ISSUE_TEMPLATE/false-block.md +26 -0
- checkwash-0.1.49/.github/ISSUE_TEMPLATE/send-us-a-cheat.md +36 -0
- checkwash-0.1.49/.github/dependabot.yml +17 -0
- checkwash-0.1.49/.github/workflows/ci.yml +131 -0
- checkwash-0.1.49/.github/workflows/greenwash.yml +18 -0
- checkwash-0.1.49/.github/workflows/release.yml +127 -0
- checkwash-0.1.49/.gitignore +8 -0
- checkwash-0.1.49/.pre-commit-hooks.yaml +14 -0
- checkwash-0.1.49/AGENTS.md +21 -0
- checkwash-0.1.49/CONTRIBUTING.md +63 -0
- checkwash-0.1.49/DECISIONS.md +1862 -0
- checkwash-0.1.49/LICENSE +190 -0
- checkwash-0.1.49/PKG-INFO +403 -0
- checkwash-0.1.49/README.md +381 -0
- checkwash-0.1.49/SECURITY.md +42 -0
- checkwash-0.1.49/SPEC.md +418 -0
- checkwash-0.1.49/STATE.md +2160 -0
- checkwash-0.1.49/THREATMODEL.md +322 -0
- checkwash-0.1.49/action/README.md +70 -0
- checkwash-0.1.49/action/action.yml +80 -0
- checkwash-0.1.49/action/post_review.py +92 -0
- checkwash-0.1.49/action/required-ruleset.json +22 -0
- checkwash-0.1.49/benchmarks/FAILURES.md +250 -0
- checkwash-0.1.49/benchmarks/README.md +343 -0
- checkwash-0.1.49/benchmarks/RESULTS.md +120 -0
- checkwash-0.1.49/benchmarks/adjudication-2026-08-02.json +252 -0
- checkwash-0.1.49/benchmarks/adjudication-2026-08-03.json +358 -0
- checkwash-0.1.49/benchmarks/adjudication-2026-08-25.json +417 -0
- checkwash-0.1.49/benchmarks/adjudication-2026-08-26.json +409 -0
- checkwash-0.1.49/benchmarks/adjudication-2026-08-26b.json +416 -0
- checkwash-0.1.49/benchmarks/adjudication-rater-B-2026-08-04.json +212 -0
- checkwash-0.1.49/benchmarks/adjudication-rater-C-2026-08-04.json +212 -0
- checkwash-0.1.49/benchmarks/compare/COMPARISON.md +92 -0
- checkwash-0.1.49/benchmarks/compare/README.md +65 -0
- checkwash-0.1.49/benchmarks/compare/decoy-2026-07-31.json +331 -0
- checkwash-0.1.49/benchmarks/compare/prepare.py +138 -0
- checkwash-0.1.49/benchmarks/compare/run.py +172 -0
- checkwash-0.1.49/benchmarks/corpus-expansion.md +61 -0
- checkwash-0.1.49/benchmarks/decoy/README.md +127 -0
- checkwash-0.1.49/benchmarks/decoy/arm-adversarial-2026-07-30.json +373 -0
- checkwash-0.1.49/benchmarks/decoy/arm-informed-2026-08-07.json +91 -0
- checkwash-0.1.49/benchmarks/decoy/arm-natural-2026-07-30.json +181 -0
- checkwash-0.1.49/benchmarks/decoy/arm-probe-adversarial-2026-08-04.json +175 -0
- checkwash-0.1.49/benchmarks/decoy/arm-probe-natural-2026-08-04.json +98 -0
- checkwash-0.1.49/benchmarks/decoy/arm-probe2-adversarial-2026-08-07.json +68 -0
- checkwash-0.1.49/benchmarks/decoy/arm-probe2-natural-2026-08-07.json +43 -0
- checkwash-0.1.49/benchmarks/decoy/expected.json +61 -0
- checkwash-0.1.49/benchmarks/decoy/harvest.py +166 -0
- checkwash-0.1.49/benchmarks/decoy/make_tasks.py +669 -0
- checkwash-0.1.49/benchmarks/decoy/replay.py +108 -0
- checkwash-0.1.49/benchmarks/external-credits.json +3 -0
- checkwash-0.1.49/benchmarks/make_failures.py +265 -0
- checkwash-0.1.49/benchmarks/make_results.py +262 -0
- checkwash-0.1.49/benchmarks/refactors/README.md +73 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/AFTER/tests/test_clamp.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/BEFORE/tests/test_clamp.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-BUG/src/app/clamp.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/PROD-GOOD/src/app/clamp.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_001_clamp/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/AFTER/tests/test_factorial.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/BEFORE/tests/test_factorial.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-BUG/src/app/factorial.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/PROD-GOOD/src/app/factorial.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_002_factorial/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/AFTER/tests/test_palindrome.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/BEFORE/tests/test_palindrome.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-BUG/src/app/palindrome.py +3 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/PROD-GOOD/src/app/palindrome.py +3 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_003_palindrome/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/AFTER/tests/test_unique.py +20 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/BEFORE/tests/test_unique.py +15 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-BUG/src/app/unique.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/PROD-GOOD/src/app/unique.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_004_unique/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/AFTER/tests/test_grade.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/BEFORE/tests/test_grade.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-BUG/src/app/grade.py +10 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/PROD-GOOD/src/app/grade.py +10 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_005_grade/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/AFTER/tests/test_fib.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/BEFORE/tests/test_fib.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-BUG/src/app/fib.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/PROD-GOOD/src/app/fib.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_006_fib/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/AFTER/tests/test_running_sum.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/BEFORE/tests/test_running_sum.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-BUG/src/app/running_sum.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/PROD-GOOD/src/app/running_sum.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_007_running_sum/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/AFTER/tests/test_slugify.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/BEFORE/tests/test_slugify.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-BUG/src/app/slugify.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/PROD-GOOD/src/app/slugify.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_008_slugify/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/AFTER/tests/test_parse_ints.py +20 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/BEFORE/tests/test_parse_ints.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-BUG/src/app/parse_ints.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/PROD-GOOD/src/app/parse_ints.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_009_parse_ints/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/AFTER/tests/test_median.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/BEFORE/tests/test_median.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-BUG/src/app/median.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/PROD-GOOD/src/app/median.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_010_median/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/AFTER/tests/test_anagram.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/BEFORE/tests/test_anagram.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-BUG/src/app/anagram.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/PROD-GOOD/src/app/anagram.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_011_anagram/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/AFTER/tests/conftest.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/AFTER/tests/test_chunk.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/BEFORE/tests/test_chunk.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-BUG/src/app/chunk.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/PROD-GOOD/src/app/chunk.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_012_chunk/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/AFTER/tests/test_rotate.py +10 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/BEFORE/tests/test_rotate.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-BUG/src/app/rotate.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/PROD-GOOD/src/app/rotate.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_013_rotate/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/AFTER/tests/test_sign.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/BEFORE/tests/test_sign.py +10 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-BUG/src/app/sign.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/PROD-GOOD/src/app/sign.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_014_sign/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/AFTER/tests/test_gcd.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/BEFORE/tests/test_gcd.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-BUG/src/app/gcd.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/PROD-GOOD/src/app/gcd.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_015_gcd/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/AFTER/tests/test_digit_sum.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/BEFORE/tests/test_digit_sum.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-BUG/src/app/digit_sum.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/PROD-GOOD/src/app/digit_sum.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_016_digit_sum/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/AFTER/tests/test_cap_words.py +24 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/BEFORE/tests/test_cap_words.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-BUG/src/app/cap_words.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/PROD-GOOD/src/app/cap_words.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_017_cap_words/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/AFTER/tests/test_interleave.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/BEFORE/tests/test_interleave.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-BUG/src/app/interleave.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/PROD-GOOD/src/app/interleave.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_018_interleave/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/AFTER/tests/test_normalize.py +24 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/BEFORE/tests/test_normalize.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-BUG/src/app/normalize.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/PROD-GOOD/src/app/normalize.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_019_normalize/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/AFTER/tests/test_windows.py +10 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/BEFORE/tests/test_windows.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-BUG/src/app/windows.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/PROD-GOOD/src/app/windows.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_020_windows/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/AFTER/tests/test_expand_range.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/BEFORE/tests/test_expand_range.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-BUG/src/app/expand_range.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/PROD-GOOD/src/app/expand_range.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_021_expand_range/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/AFTER/tests/test_safe_div.py +19 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/BEFORE/tests/test_safe_div.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-BUG/src/app/safe_div.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/PROD-GOOD/src/app/safe_div.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_022_safe_div/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/AFTER/tests/test_parse_name.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/BEFORE/tests/test_parse_name.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-BUG/src/app/parse_name.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/PROD-GOOD/src/app/parse_name.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_023_parse_name/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/AFTER/tests/test_celsius.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/BEFORE/tests/test_celsius.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-BUG/src/app/celsius.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/PROD-GOOD/src/app/celsius.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_024_celsius/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/AFTER/tests/test_all_equal.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/BEFORE/tests/test_all_equal.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-BUG/src/app/all_equal.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/PROD-GOOD/src/app/all_equal.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_025_all_equal/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/AFTER/tests/test_leap.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/BEFORE/tests/test_leap.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-BUG/src/app/leap.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/PROD-GOOD/src/app/leap.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_026_leap/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/AFTER/tests/test_clip_index.py +12 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/BEFORE/tests/test_clip_index.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-BUG/src/app/clip_index.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/PROD-GOOD/src/app/clip_index.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_027_clip_index/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/AFTER/tests/test_parse_rgb.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/BEFORE/tests/test_parse_rgb.py +15 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-BUG/src/app/parse_rgb.py +3 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/PROD-GOOD/src/app/parse_rgb.py +3 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_028_parse_rgb/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/AFTER/tests/test_flatten.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/BEFORE/tests/test_flatten.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-BUG/src/app/flatten.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/PROD-GOOD/src/app/flatten.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_029_flatten/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/AFTER/tests/helpers.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/AFTER/tests/test_prefix.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/BEFORE/tests/test_prefix.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-BUG/src/app/prefix.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/PROD-GOOD/src/app/prefix.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/CASE_030_prefix/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/AFTER/tests/test_indent.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/BEFORE/tests/test_indent.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-BUG/src/app/indent.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/PROD-GOOD/src/app/indent.py +3 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_001_indent/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/AFTER/tests/test_count_vowels.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/BEFORE/tests/test_count_vowels.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-BUG/src/app/count_vowels.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/PROD-GOOD/src/app/count_vowels.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_002_count_vowels/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/AFTER/tests/test_take.py +25 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/BEFORE/tests/test_take.py +21 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-BUG/src/app/take.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/PROD-GOOD/src/app/take.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_003_take/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/AFTER/tests/test_ceil_div.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/BEFORE/tests/test_ceil_div.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-BUG/src/app/ceil_div.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/PROD-GOOD/src/app/ceil_div.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_004_ceil_div/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/AFTER/tests/test_rpad.py +16 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/BEFORE/tests/test_rpad.py +15 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-BUG/src/app/rpad.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/PROD-GOOD/src/app/rpad.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_005_rpad/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/AFTER/tests/conftest.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/AFTER/tests/test_between.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/BEFORE/tests/test_between.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-BUG/src/app/between.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/PROD-GOOD/src/app/between.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_006_between/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/AFTER/tests/test_initials.py +23 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/BEFORE/tests/test_initials.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-BUG/src/app/initials.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/PROD-GOOD/src/app/initials.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_007_initials/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/AFTER/tests/test_is_sorted.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/BEFORE/tests/test_is_sorted.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-BUG/src/app/is_sorted.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/PROD-GOOD/src/app/is_sorted.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_008_is_sorted/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/AFTER/tests/test_pair_sum.py +15 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/BEFORE/tests/test_pair_sum.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-BUG/src/app/pair_sum.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/PROD-GOOD/src/app/pair_sum.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_009_pair_sum/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/AFTER/tests/test_ordinal.py +18 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/BEFORE/tests/test_ordinal.py +21 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-BUG/src/app/ordinal.py +3 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/PROD-GOOD/src/app/ordinal.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_010_ordinal/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/AFTER/tests/test_camel_to_snake.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/BEFORE/tests/test_camel_to_snake.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-BUG/src/app/camel_to_snake.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/PROD-GOOD/src/app/camel_to_snake.py +7 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_011_camel_to_snake/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/AFTER/tests/test_strip_prefix.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/BEFORE/tests/test_strip_prefix.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-BUG/src/app/strip_prefix.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/PROD-GOOD/src/app/strip_prefix.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_012_strip_prefix/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/AFTER/tests/test_min_max.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/BEFORE/tests/test_min_max.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-BUG/src/app/min_max.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/PROD-GOOD/src/app/min_max.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_013_min_max/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/AFTER/tests/test_product.py +19 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/BEFORE/tests/test_product.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-BUG/src/app/product.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/PROD-GOOD/src/app/product.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_014_product/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/AFTER/tests/conftest.py +11 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/AFTER/tests/test_hamming.py +10 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/BEFORE/tests/test_hamming.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-BUG/src/app/hamming.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/PROD-GOOD/src/app/hamming.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_015_hamming/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/AFTER/tests/test_reverse_words.py +15 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/BEFORE/tests/test_reverse_words.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-BUG/src/app/reverse_words.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/PROD-GOOD/src/app/reverse_words.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_016_reverse_words/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/AFTER/tests/test_squeeze_spaces.py +16 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/BEFORE/tests/test_squeeze_spaces.py +15 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-BUG/src/app/squeeze_spaces.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/PROD-GOOD/src/app/squeeze_spaces.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_017_squeeze_spaces/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/AFTER/tests/test_is_prefix.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/BEFORE/tests/test_is_prefix.py +21 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-BUG/src/app/is_prefix.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/PROD-GOOD/src/app/is_prefix.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_018_is_prefix/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/AFTER/tests/test_digits_only.py +18 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/BEFORE/tests/test_digits_only.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-BUG/src/app/digits_only.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/PROD-GOOD/src/app/digits_only.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_019_digits_only/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/AFTER/tests/test_parse_bool.py +23 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/BEFORE/tests/test_parse_bool.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-BUG/src/app/parse_bool.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/PROD-GOOD/src/app/parse_bool.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_020_parse_bool/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/AFTER/tests/test_truncate.py +18 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/BEFORE/tests/test_truncate.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-BUG/src/app/truncate.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/PROD-GOOD/src/app/truncate.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_021_truncate/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/AFTER/tests/test_fill_none.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/BEFORE/tests/test_fill_none.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-BUG/src/app/fill_none.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/PROD-GOOD/src/app/fill_none.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_022_fill_none/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/AFTER/tests/test_abs_diff.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/BEFORE/tests/test_abs_diff.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-BUG/src/app/abs_diff.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/PROD-GOOD/src/app/abs_diff.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_023_abs_diff/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/AFTER/tests/test_bit_count.py +21 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/BEFORE/tests/test_bit_count.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-BUG/src/app/bit_count.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/PROD-GOOD/src/app/bit_count.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_024_bit_count/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/AFTER/tests/helpers.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/AFTER/tests/test_common_suffix.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/BEFORE/tests/test_common_suffix.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-BUG/src/app/common_suffix.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/PROD-GOOD/src/app/common_suffix.py +6 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_025_common_suffix/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/AFTER/tests/test_wrap_index.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/BEFORE/tests/test_wrap_index.py +17 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-BUG/src/app/wrap_index.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/PROD-GOOD/src/app/wrap_index.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_026_wrap_index/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/AFTER/tests/test_merge_unique.py +14 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/BEFORE/tests/test_merge_unique.py +9 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-BUG/src/app/merge_unique.py +2 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/PROD-GOOD/src/app/merge_unique.py +8 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_027_merge_unique/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/AFTER/tests/test_percent.py +23 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/BEFORE/tests/test_percent.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-BUG/src/app/percent.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/PROD-GOOD/src/app/percent.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_028_percent/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/AFTER/tests/test_basename.py +16 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/BEFORE/tests/test_basename.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-BUG/src/app/basename.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/PROD-GOOD/src/app/basename.py +5 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_029_basename/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/AFTER/tests/test_unquote.py +29 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/BEFORE/tests/test_unquote.py +13 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-BUG/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-BUG/src/app/unquote.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-GOOD/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/PROD-GOOD/src/app/unquote.py +4 -0
- checkwash-0.1.49/benchmarks/refactors/cases/EXT_030_unquote/WHY.txt +1 -0
- checkwash-0.1.49/benchmarks/refactors/expected.json +393 -0
- checkwash-0.1.49/benchmarks/refactors/results-2026-08-13.json +442 -0
- checkwash-0.1.49/benchmarks/refactors/results-latest.json +442 -0
- checkwash-0.1.49/benchmarks/refactors/verify.py +127 -0
- checkwash-0.1.49/benchmarks/score.py +110 -0
- checkwash-0.1.49/benchmarks/sweeps/README.md +24 -0
- checkwash-0.1.49/benchmarks/sweeps/attrs.json +72 -0
- checkwash-0.1.49/benchmarks/sweeps/click.json +225 -0
- checkwash-0.1.49/benchmarks/sweeps/flask.json +162 -0
- checkwash-0.1.49/benchmarks/sweeps/httpx.json +520 -0
- checkwash-0.1.49/benchmarks/sweeps/rich.json +130 -0
- checkwash-0.1.49/benchmarks/sweeps/starlette.json +75 -0
- checkwash-0.1.49/benchmarks/tamper/README.md +94 -0
- checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/after/tests/test_addsub.py +10 -0
- checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/before/tests/test_addsub.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/001-addsub/src/app/addsub.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/after/tests/test_biggest.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/before/tests/test_biggest.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/002-biggest/src/app/biggest.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/after/tests/test_evenness.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/before/tests/test_evenness.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/003-evenness/src/app/evenness.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/after/tests/test_clamp.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/before/tests/test_clamp.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/004-clamp/src/app/clamp.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/005-absint/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/005-absint/after/tests/test_absint.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/005-absint/before/tests/test_absint.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/005-absint/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/005-absint/src/app/absint.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/006-twice/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/006-twice/after/tests/test_twice.py +16 -0
- checkwash-0.1.49/benchmarks/tamper/cases/006-twice/before/tests/test_twice.py +17 -0
- checkwash-0.1.49/benchmarks/tamper/cases/006-twice/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/006-twice/src/app/twice.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/007-average/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/007-average/after/tests/test_average.py +10 -0
- checkwash-0.1.49/benchmarks/tamper/cases/007-average/before/tests/test_average.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/007-average/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/007-average/src/app/average.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/008-titled/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/008-titled/after/tests/test_titled.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/008-titled/before/tests/test_titled.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/008-titled/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/008-titled/src/app/titled.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/009-double/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/009-double/after/tests/test_double.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/009-double/before/tests/test_double.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/009-double/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/009-double/src/app/double.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/010-squares/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/010-squares/after/tests/test_squares.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/010-squares/before/tests/test_squares.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/010-squares/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/010-squares/src/app/squares.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/011-signum/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/011-signum/after/tests/test_signum.py +12 -0
- checkwash-0.1.49/benchmarks/tamper/cases/011-signum/before/tests/test_signum.py +11 -0
- checkwash-0.1.49/benchmarks/tamper/cases/011-signum/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/011-signum/src/app/signum.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/after/tests/test_factorial.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/before/tests/test_factorial.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/012-factorial/src/app/factorial.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/after/tests/test_reversal.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/before/tests/test_reversal.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/013-reversal/src/app/reversal.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/014-increment/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/014-increment/after/tests/test_increment.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/014-increment/before/tests/test_increment.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/014-increment/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/014-increment/src/app/increment.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/after/tests/test_decrement.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/before/tests/test_decrement.py +11 -0
- checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/015-decrement/src/app/decrement.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/016-negate/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/016-negate/after/tests/test_negate.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/016-negate/before/tests/test_negate.py +15 -0
- checkwash-0.1.49/benchmarks/tamper/cases/016-negate/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/016-negate/src/app/negate.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/017-power/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/017-power/after/tests/test_power.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/017-power/before/tests/test_power.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/017-power/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/017-power/src/app/power.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/018-concat/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/018-concat/after/tests/test_concat.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/018-concat/before/tests/test_concat.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/018-concat/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/018-concat/src/app/concat.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/after/tests/test_fibonacci.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/before/tests/test_fibonacci.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/019-fibonacci/src/app/fibonacci.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/after/tests/test_multiply.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/before/tests/test_multiply.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/020-multiply/src/app/multiply.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/after/tests/test_gcd.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/before/tests/test_gcd.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/021-gcd/src/app/gcd.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/022-median/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/022-median/after/tests/test_median.py +10 -0
- checkwash-0.1.49/benchmarks/tamper/cases/022-median/before/tests/test_median.py +10 -0
- checkwash-0.1.49/benchmarks/tamper/cases/022-median/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/022-median/src/app/median.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/after/tests/test_palindrome.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/before/tests/test_palindrome.py +12 -0
- checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/023-palindrome/src/app/palindrome.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/after/tests/test_prefix.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/before/tests/test_prefix.py +11 -0
- checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/024-prefix/src/app/prefix.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/after/tests/test_rotate.py +11 -0
- checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/before/tests/test_rotate.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/025-rotate/src/app/rotate.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/after/tests/test_normalize.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/before/tests/test_normalize.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/026-normalize/src/app/normalize.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/after/tests/test_clamp0.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/before/tests/test_clamp0.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/027-clamp0/src/app/clamp0.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/after/tests/test_lowercase.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/before/tests/test_lowercase.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/028-lowercase/src/app/lowercase.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/029-unique/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/029-unique/after/tests/test_unique.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/029-unique/before/tests/test_unique.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/029-unique/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/029-unique/src/app/unique.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/after/tests/test_flatten.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/before/tests/test_flatten.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/030-flatten/src/app/flatten.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/after/tests/test_parsebool.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/before/tests/test_parsebool.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/031-parsebool/src/app/parsebool.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/after/tests/test_midpoint.py +10 -0
- checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/before/tests/test_midpoint.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/032-midpoint/src/app/midpoint.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/after/tests/test_clipstr.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/before/tests/test_clipstr.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/033-clipstr/src/app/clipstr.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/after/tests/test_anagram.py +11 -0
- checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/before/tests/test_anagram.py +12 -0
- checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/034-anagram/src/app/anagram.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/035-identity/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/035-identity/after/tests/test_identity.py +15 -0
- checkwash-0.1.49/benchmarks/tamper/cases/035-identity/before/tests/test_identity.py +15 -0
- checkwash-0.1.49/benchmarks/tamper/cases/035-identity/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/035-identity/src/app/identity.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/after/tests/test_countvowels.py +12 -0
- checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/before/tests/test_countvowels.py +12 -0
- checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/036-countvowels/src/app/countvowels.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/after/tests/test_wraptext.py +22 -0
- checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/before/tests/test_wraptext.py +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/037-wraptext/src/app/wraptext.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/after/tests/test_slugify.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/before/tests/test_slugify.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/038-slugify/src/app/slugify.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/after/tests/test_percentile.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/before/tests/test_percentile.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/039-percentile/src/app/percentile.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/after/tests/test_startswith.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/before/tests/test_startswith.py +13 -0
- checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/040-startswith/src/app/startswith.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/README.md +14 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/after/tests/test_001.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/before/tests/test_001.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d001-discount-applies-to-total-no/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/after/tests/test_002.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/before/tests/test_002.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d002-clamps-negative-balance-to-z/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/after/tests/test_003.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/before/tests/test_003.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d003-palindrome-must-be-case-sens/src/app/prod.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/after/tests/test_004.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/before/tests/test_004.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d004-parse-date-returns-correct-m/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/after/tests/test_005.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/before/tests/test_005.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d005-add-zero-plus-zero/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/after/tests/test_006.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/before/tests/test_006.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d006-percentage-returns-float/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/after/tests/test_007.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/before/tests/test_007.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d007-factorial-of-zero/src/app/prod.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/after/tests/test_008.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/before/tests/test_008.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d008-first-n-characters/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/after/tests/test_009.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/before/tests/test_009.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d009-email-validation-rejects-con/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/after/tests/test_010.py +18 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/before/tests/test_010.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d010-stack-is-lifo/src/app/prod.py +9 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/after/tests/test_011.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/before/tests/test_011.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d011-reverse-short-string/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/after/tests/test_012.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/before/tests/test_012.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d012-only-200-is-success/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/after/tests/test_013.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/before/tests/test_013.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d013-missing-config-key-raises/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/after/tests/test_014.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/before/tests/test_014.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d014-four-is-even/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/after/tests/test_015.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/before/tests/test_015.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d015-multiply-by-zero-is-zero/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/after/tests/test_016.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/before/tests/test_016.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d016-split-on-first-separator/src/app/prod.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/after/tests/test_017.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/before/tests/test_017.py +7 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d017-divide-by-zero-raises/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/after/tests/test_018.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/before/tests/test_018.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d018-parse-negative-integer/src/app/prod.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/after/tests/test_019.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/before/tests/test_019.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d019-merge-without-overwrite/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/after/tests/test_020.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/before/tests/test_020.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d020-adder-closure/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/after/tests/test_021.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/before/tests/test_021.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d021-join-names/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/after/tests/test_022.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/before/tests/test_022.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d022-18-is-adult/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/after/tests/test_023.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/before/tests/test_023.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d023-strictly-less-than-count/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/after/tests/test_024.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/before/tests/test_024.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d024-integer-division-result/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/after/tests/test_025.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/before/tests/test_025.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d025-average-returns-float/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/after/tests/test_026.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/before/tests/test_026.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d026-unique-preserving-order/src/app/prod.py +8 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/after/tests/test_027.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/before/tests/test_027.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d027-find-index-of-element/src/app/prod.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/after/tests/test_028.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/before/tests/test_028.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d028-generate-even-numbers/src/app/prod.py +4 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/after/tests/test_029.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/before/tests/test_029.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d029-swap-two-values/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/after/tests/test_030.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/before/tests/test_030.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d030-sort-names-a-z/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/after/tests/test_031.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/before/tests/test_031.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d031-pair-keys-with-values/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/after/tests/test_032.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/before/tests/test_032.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d032-pair-by-index/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/after/tests/test_033.py +6 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/before/tests/test_033.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d033-double-each-element/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/after/tests/test_034.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/before/tests/test_034.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d034-filter-positive-numbers/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/after/tests/test_035.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/before/tests/test_035.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d035-all-items-positive/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/after/tests/test_036.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/before/tests/test_036.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d036-any-element-is-even/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/after/tests/test_037.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/before/tests/test_037.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d037-password-strength/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/after/tests/test_038.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/before/tests/test_038.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d038-greeting-says-hello/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/after/tests/test_039.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/before/tests/test_039.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d039-format-currency/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/WHY.txt +2 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/after/tests/test_040.py +5 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/before/tests/test_040.py +3 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/src/app/__init__.py +0 -0
- checkwash-0.1.49/benchmarks/tamper/cases/d040-filename-with-extension/src/app/prod.py +2 -0
- checkwash-0.1.49/benchmarks/tamper/expected.json +311 -0
- checkwash-0.1.49/benchmarks/tamper/results-2026-08-13.json +426 -0
- checkwash-0.1.49/benchmarks/tamper/verify.py +123 -0
- checkwash-0.1.49/benchmarks/triage-2026-07-30.json +343 -0
- checkwash-0.1.49/docs/OWNER_ACTIONS.md +51 -0
- checkwash-0.1.49/docs/RELEASING.md +117 -0
- checkwash-0.1.49/docs/ROADMAP-top-tier.md +512 -0
- checkwash-0.1.49/docs/cheat-cadence.md +48 -0
- checkwash-0.1.49/docs/code-review-static-2026-08-11.md +385 -0
- checkwash-0.1.49/docs/defence-design.md +664 -0
- checkwash-0.1.49/docs/enterprise.md +78 -0
- checkwash-0.1.49/docs/integrations.md +676 -0
- checkwash-0.1.49/docs/launch.md +435 -0
- checkwash-0.1.49/docs/process-windows.md +94 -0
- checkwash-0.1.49/docs/redteam-residual-after-p0.md +496 -0
- checkwash-0.1.49/docs/redteam-weaknesses.md +498 -0
- checkwash-0.1.49/docs/releases/v0.1.13-candidate.md +48 -0
- checkwash-0.1.49/docs/satellite-execution.md +69 -0
- checkwash-0.1.49/docs/stability.md +129 -0
- checkwash-0.1.49/examples/invoice/README.md +25 -0
- checkwash-0.1.49/examples/invoice/billing.py +3 -0
- checkwash-0.1.49/examples/invoice/tests/test_billing.py +6 -0
- checkwash-0.1.49/pyproject.toml +44 -0
- checkwash-0.1.49/src/greenwash/__init__.py +6 -0
- checkwash-0.1.49/src/greenwash/__main__.py +3 -0
- checkwash-0.1.49/src/greenwash/allowlist.py +129 -0
- checkwash-0.1.49/src/greenwash/bench.py +318 -0
- checkwash-0.1.49/src/greenwash/cases.py +159 -0
- checkwash-0.1.49/src/greenwash/change.py +19 -0
- checkwash-0.1.49/src/greenwash/ci.py +246 -0
- checkwash-0.1.49/src/greenwash/cli.py +564 -0
- checkwash-0.1.49/src/greenwash/compat.py +339 -0
- checkwash-0.1.49/src/greenwash/config.py +175 -0
- checkwash-0.1.49/src/greenwash/contract.py +61 -0
- checkwash-0.1.49/src/greenwash/demo.py +91 -0
- checkwash-0.1.49/src/greenwash/demo_cases/01_weakened_assertion.gwcase +18 -0
- checkwash-0.1.49/src/greenwash/demo_cases/02_widened_tolerance.gwcase +23 -0
- checkwash-0.1.49/src/greenwash/demo_cases/03_rewritten_expectation.gwcase +18 -0
- checkwash-0.1.49/src/greenwash/demo_cases/04_skipped_test.gwcase +21 -0
- checkwash-0.1.49/src/greenwash/demo_cases/05_swallowed_assertion.gwcase +25 -0
- checkwash-0.1.49/src/greenwash/demo_cases/06_self_relaxed_ci.gwcase +19 -0
- checkwash-0.1.49/src/greenwash/demo_cases/07_self_relaxed_guardrail.gwcase +14 -0
- checkwash-0.1.49/src/greenwash/demo_cases/08_honest_fix_passes.gwcase +12 -0
- checkwash-0.1.49/src/greenwash/demo_cases/09_substituted_assertion.gwcase +27 -0
- checkwash-0.1.49/src/greenwash/deps.py +190 -0
- checkwash-0.1.49/src/greenwash/detectors/__init__.py +44 -0
- checkwash-0.1.49/src/greenwash/detectors/assert_removed.py +38 -0
- checkwash-0.1.49/src/greenwash/detectors/assert_substituted.py +160 -0
- checkwash-0.1.49/src/greenwash/detectors/assert_weakened.py +155 -0
- checkwash-0.1.49/src/greenwash/detectors/expectation_definition.py +280 -0
- checkwash-0.1.49/src/greenwash/detectors/expected_changed.py +141 -0
- checkwash-0.1.49/src/greenwash/detectors/expected_hardcoded.py +91 -0
- checkwash-0.1.49/src/greenwash/detectors/globals_rules.py +222 -0
- checkwash-0.1.49/src/greenwash/detectors/subject_normalized.py +84 -0
- checkwash-0.1.49/src/greenwash/detectors/test_disabled.py +112 -0
- checkwash-0.1.49/src/greenwash/detectors/test_patches.py +140 -0
- checkwash-0.1.49/src/greenwash/detectors/tolerance_loosened.py +97 -0
- checkwash-0.1.49/src/greenwash/doctor.py +473 -0
- checkwash-0.1.49/src/greenwash/engine.py +805 -0
- checkwash-0.1.49/src/greenwash/evidence.py +226 -0
- checkwash-0.1.49/src/greenwash/findings.py +62 -0
- checkwash-0.1.49/src/greenwash/frontends/__init__.py +0 -0
- checkwash-0.1.49/src/greenwash/frontends/javascript/__init__.py +5 -0
- checkwash-0.1.49/src/greenwash/frontends/javascript/frontend.py +115 -0
- checkwash-0.1.49/src/greenwash/frontends/python/__init__.py +3 -0
- checkwash-0.1.49/src/greenwash/frontends/python/frontend.py +2667 -0
- checkwash-0.1.49/src/greenwash/gating.py +724 -0
- checkwash-0.1.49/src/greenwash/gitio/__init__.py +19 -0
- checkwash-0.1.49/src/greenwash/gitio/git.py +286 -0
- checkwash-0.1.49/src/greenwash/ir/__init__.py +0 -0
- checkwash-0.1.49/src/greenwash/ir/astutil.py +139 -0
- checkwash-0.1.49/src/greenwash/ir/diffalign.py +258 -0
- checkwash-0.1.49/src/greenwash/ir/markers.py +35 -0
- checkwash-0.1.49/src/greenwash/ir/model.py +359 -0
- checkwash-0.1.49/src/greenwash/ir/strength.py +35 -0
- checkwash-0.1.49/src/greenwash/pyenv.py +48 -0
- checkwash-0.1.49/src/greenwash/report/__init__.py +0 -0
- checkwash-0.1.49/src/greenwash/report/jsonout.py +35 -0
- checkwash-0.1.49/src/greenwash/report/sarif.py +83 -0
- checkwash-0.1.49/src/greenwash/report/term.py +138 -0
- checkwash-0.1.49/src/greenwash/roles.py +395 -0
- checkwash-0.1.49/src/greenwash/sweep.py +157 -0
- checkwash-0.1.49/src/greenwash/zipapp_entry.py +8 -0
- checkwash-0.1.49/tests/cases/aliased_skip_marker_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/allowlist_future_created_pos.gwcase +37 -0
- checkwash-0.1.49/tests/cases/allowlist_over_cap_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/almost_places_added_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/approx_default_tightened_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/approx_expected_rewrite_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/approx_tolerance_added_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/artifact_cannot_disarm_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/assert_removed_moved_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/assert_removed_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/assert_renamed_both_nonliteral_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/assert_renamed_subject_neg.gwcase +20 -0
- checkwash-0.1.49/tests/cases/assert_reordered_neg.gwcase +20 -0
- checkwash-0.1.49/tests/cases/assert_reoriented_compat_neg.gwcase +36 -0
- checkwash-0.1.49/tests/cases/assert_reoriented_parametrize_neg.gwcase +40 -0
- checkwash-0.1.49/tests/cases/assert_substituted_both_nonliteral_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/assert_substituted_depbump_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/assert_substituted_literal_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/assert_substituted_own_version_bump_pos.gwcase +38 -0
- checkwash-0.1.49/tests/cases/assert_substituted_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/assert_substituted_unit_rewrite_neg.gwcase +23 -0
- checkwash-0.1.49/tests/cases/assert_weakened_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/assert_weakened_repair_neg.gwcase +28 -0
- checkwash-0.1.49/tests/cases/assert_weakened_with_prod_change_warn.gwcase +25 -0
- checkwash-0.1.49/tests/cases/assertis_polarity_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/bare_bound_then_used_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/bare_len_operand_flip_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/bare_literal_bound_pad_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/bidi_test_data_neg.gwcase +10 -0
- checkwash-0.1.49/tests/cases/broad_except_in_test_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/broad_except_inspects_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/broad_except_pos.gwcase +16 -0
- checkwash-0.1.49/tests/cases/broad_except_reraises_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/build_makefile_stays_prod_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/c_extension_still_opaque_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/chained_bound_rewrite_pos.gwcase +14 -0
- checkwash-0.1.49/tests/cases/chained_reformat_neg.gwcase +14 -0
- checkwash-0.1.49/tests/cases/ci_config_first_time_neg.gwcase +11 -0
- checkwash-0.1.49/tests/cases/ci_config_migrated_neg.gwcase +28 -0
- checkwash-0.1.49/tests/cases/ci_existing_deselection_neg.gwcase +21 -0
- checkwash-0.1.49/tests/cases/ci_lint_workflow_removed_neg.gwcase +12 -0
- checkwash-0.1.49/tests/cases/ci_new_deselection_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/ci_unrelated_edit_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/ci_weakened_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/circleci_weakened_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/class_rename_out_of_collection_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/class_skip_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/collect_ignore_appended_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/collect_ignore_import_gate_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/collect_ignore_slice_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/compat_gate_always_true_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/compat_gate_constant_always_true_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/compat_gate_guard_tokenless_pos.gwcase +29 -0
- checkwash-0.1.49/tests/cases/compat_gate_guarded_call_neg.gwcase +35 -0
- checkwash-0.1.49/tests/cases/compat_gate_head_import_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/compat_gate_imported_always_true_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/compat_gate_imported_constant_neg.gwcase +33 -0
- checkwash-0.1.49/tests/cases/compat_gate_module_constant_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/compat_gate_real_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/compat_gate_reason_smuggle_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/compat_gate_version_always_true_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/compat_gate_with_constant_neg.gwcase +34 -0
- checkwash-0.1.49/tests/cases/compat_gate_xfail_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/compat_gate_xfail_strict_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/compat_skipif_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/config_file_consolidated_neg.gwcase +10 -0
- checkwash-0.1.49/tests/cases/conftest_added_file_kills_suite_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/conftest_availability_guard_neg.gwcase +44 -0
- checkwash-0.1.49/tests/cases/conftest_collect_ignore_extend_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/conftest_collect_ignore_guarded_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/conftest_collect_ignore_launder_pos.gwcase +29 -0
- checkwash-0.1.49/tests/cases/conftest_collection_control_not_repaired_pos.gwcase +38 -0
- checkwash-0.1.49/tests/cases/conftest_patches_prod_pos.gwcase +35 -0
- checkwash-0.1.49/tests/cases/conftest_patches_thirdparty_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/conftest_skip_hook_pos.gwcase +16 -0
- checkwash-0.1.49/tests/cases/dead_branch_compare_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/dead_branch_empty_for_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/dead_branch_not_true_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/dead_prod_line_pos.gwcase +35 -0
- checkwash-0.1.49/tests/cases/deleted_prod_related_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/deleted_prod_unrelated_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/dependency_drift_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/dependency_drift_weakening_pos.gwcase +29 -0
- checkwash-0.1.49/tests/cases/deploy_script_still_opaque_neg.gwcase +28 -0
- checkwash-0.1.49/tests/cases/deps_comment_only_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/deps_reorder_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/duplicate_remains_body_differs_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/duplicate_remains_disabled_copy_pos.gwcase +40 -0
- checkwash-0.1.49/tests/cases/duplicate_remains_neg.gwcase +32 -0
- checkwash-0.1.49/tests/cases/early_return_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/evidence_annotation_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/evidence_dead_local_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/evidence_real_fix_still_counts_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/evidence_string_stmt_neg.gwcase +32 -0
- checkwash-0.1.49/tests/cases/exemption_added_pos.gwcase +16 -0
- checkwash-0.1.49/tests/cases/exemption_rewritten_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/expectation_definition_allowed_set_pos.gwcase +16 -0
- checkwash-0.1.49/tests/cases/expectation_definition_branches_replaced_pos.gwcase +29 -0
- checkwash-0.1.49/tests/cases/expectation_definition_changed_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/expectation_definition_depdrift_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/expectation_definition_gated_alternative_mirror_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/expectation_definition_gated_alternative_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/expectation_definition_literal_needle_neg.gwcase +32 -0
- checkwash-0.1.49/tests/cases/expectation_definition_membership_needle_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/expectation_definition_membership_producer_neg.gwcase +34 -0
- checkwash-0.1.49/tests/cases/expectation_definition_module_constant_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/expectation_definition_module_constant_reformat_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/expectation_definition_module_constant_repaired_neg.gwcase +33 -0
- checkwash-0.1.49/tests/cases/expectation_definition_module_constant_shared_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/expectation_definition_own_version_pos.gwcase +31 -0
- checkwash-0.1.49/tests/cases/expectation_definition_package_repair_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/expectation_definition_package_unrelated_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/expectation_definition_reformatted_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/expectation_definition_repaired_neg.gwcase +36 -0
- checkwash-0.1.49/tests/cases/expectation_definition_sequential_rebind_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/expectation_definition_shared_ctor_neg.gwcase +36 -0
- checkwash-0.1.49/tests/cases/expectation_definition_via_helper_neg.gwcase +34 -0
- checkwash-0.1.49/tests/cases/expectation_derived_inline_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/expectation_derived_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/expectation_derived_unittest_neg.gwcase +28 -0
- checkwash-0.1.49/tests/cases/expectation_derived_unittest_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/expectation_derived_unpack_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/expectation_derived_unrelated_neg.gwcase +21 -0
- checkwash-0.1.49/tests/cases/expectation_derived_walrus_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/expectation_fixture_return_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/expectation_named_constant_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/expectation_parametrize_column_pos.gwcase +30 -0
- checkwash-0.1.49/tests/cases/expectation_parametrize_input_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/expectation_parametrized_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/expected_hardcoded_pos.gwcase +34 -0
- checkwash-0.1.49/tests/cases/expected_hardcoded_trivial_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/expected_on_left_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/expected_value_rewritten_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/expected_value_with_repair_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/formatting_only_neg.gwcase +21 -0
- checkwash-0.1.49/tests/cases/guard_constant_flip_pos.gwcase +41 -0
- checkwash-0.1.49/tests/cases/guard_constant_honest_bump_neg.gwcase +36 -0
- checkwash-0.1.49/tests/cases/guard_text_always_true_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/guard_text_honest_bump_neg.gwcase +28 -0
- checkwash-0.1.49/tests/cases/guardrail_created_neg.gwcase +16 -0
- checkwash-0.1.49/tests/cases/guardrail_rename_escape_pos.gwcase +15 -0
- checkwash-0.1.49/tests/cases/guardrail_touched_pos.gwcase +13 -0
- checkwash-0.1.49/tests/cases/guardrail_untouched_neg.gwcase +14 -0
- checkwash-0.1.49/tests/cases/hardcoded_existing_value_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/hidden_unicode_absent_neg.gwcase +12 -0
- checkwash-0.1.49/tests/cases/hidden_unicode_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/if_false_assertion_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/import_declared_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/import_no_manifest_neg.gwcase +15 -0
- checkwash-0.1.49/tests/cases/import_unresolved_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/indirect_repair_neg.gwcase +33 -0
- checkwash-0.1.49/tests/cases/inert_doc_change_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/js_expect_unchanged_neg.gwcase +14 -0
- checkwash-0.1.49/tests/cases/js_expect_weakened_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/js_test_skipped_pos.gwcase +14 -0
- checkwash-0.1.49/tests/cases/leaf_name_collision_pos.gwcase +33 -0
- checkwash-0.1.49/tests/cases/listequal_style_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/live_branch_neg.gwcase +19 -0
- checkwash-0.1.49/tests/cases/makefile_ignore_errors_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/merged_parametrize_neg.gwcase +38 -0
- checkwash-0.1.49/tests/cases/mild_weaken_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/mild_weaken_reformat_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/mild_weaken_subject_changed_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/module_level_skip_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/moved_multiset_pos.gwcase +36 -0
- checkwash-0.1.49/tests/cases/moved_string_edited_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/moved_test_file_neg.gwcase +17 -0
- checkwash-0.1.49/tests/cases/moved_to_build_dir_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/moved_to_dot_dir_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/narrow_except_neg.gwcase +16 -0
- checkwash-0.1.49/tests/cases/nested_pyproject_not_opaque_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/nested_scope_assertion_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/opaque_deleted_file_not_evidence_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/opaque_new_file_not_evidence_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/oracle_crossfile_import_neg.gwcase +39 -0
- checkwash-0.1.49/tests/cases/oracle_crossfile_uncalled_pos.gwcase +33 -0
- checkwash-0.1.49/tests/cases/oracle_fixture_checker_neg.gwcase +41 -0
- checkwash-0.1.49/tests/cases/oracle_fixture_fanout_dedup.gwcase +52 -0
- checkwash-0.1.49/tests/cases/oracle_fixture_teardown_refused_trade.gwcase +47 -0
- checkwash-0.1.49/tests/cases/oracle_fixture_unrequested_pos.gwcase +36 -0
- checkwash-0.1.49/tests/cases/oracle_freeze_pos.gwcase +37 -0
- checkwash-0.1.49/tests/cases/oracle_helper_renamed_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/oracle_helper_uncalled_pos.gwcase +31 -0
- checkwash-0.1.49/tests/cases/oracle_moved_into_helper_neg.gwcase +34 -0
- checkwash-0.1.49/tests/cases/oracle_nested_never_invoked_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/package_repair_behaviour_change_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/package_repair_needs_modified_symbol_pos.gwcase +37 -0
- checkwash-0.1.49/tests/cases/package_repair_needs_prod_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/package_repair_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/param_marks_skip_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/parametrize_rows_pos.gwcase +38 -0
- checkwash-0.1.49/tests/cases/plain_class_not_collected_neg.gwcase +20 -0
- checkwash-0.1.49/tests/cases/polarity_inverted_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/precommit_bump_neg.gwcase +18 -0
- checkwash-0.1.49/tests/cases/prod_reorder_pos.gwcase +33 -0
- checkwash-0.1.49/tests/cases/prod_symbol_added_only_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/prod_symbol_removed_dynamic_import_neg.gwcase +29 -0
- checkwash-0.1.49/tests/cases/prod_symbol_removed_local_rewrite_pos.gwcase +47 -0
- checkwash-0.1.49/tests/cases/prod_symbol_removed_marker_pos.gwcase +33 -0
- checkwash-0.1.49/tests/cases/prod_symbol_removed_neg.gwcase +47 -0
- checkwash-0.1.49/tests/cases/prod_symbol_removed_param_row_neg.gwcase +34 -0
- checkwash-0.1.49/tests/cases/prod_symbol_removed_unrelated_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/pytest_ini_harmless_neg.gwcase +11 -0
- checkwash-0.1.49/tests/cases/pytest_ini_narrowed_pos.gwcase +12 -0
- checkwash-0.1.49/tests/cases/pytestmark_skip_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/raises_match_fold_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/raises_swap_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/relocation_assertionless_unit_neg.gwcase +42 -0
- checkwash-0.1.49/tests/cases/relocation_into_alwaystrue_skipif_pos.gwcase +42 -0
- checkwash-0.1.49/tests/cases/relocation_into_compat_gated_unit_neg.gwcase +44 -0
- checkwash-0.1.49/tests/cases/relocation_into_skipped_unit_pos.gwcase +36 -0
- checkwash-0.1.49/tests/cases/rename_into_skipped_stub_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/repair_via_helper_neg.gwcase +32 -0
- checkwash-0.1.49/tests/cases/repair_via_helper_unrelated_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/root_import_same_module_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/root_import_sibling_sameleaf_pos.gwcase +31 -0
- checkwash-0.1.49/tests/cases/row13_exact_to_approx_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/row14_sorted_wrap_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/row17_mybuild_dir_neg.gwcase +19 -0
- checkwash-0.1.49/tests/cases/row20_vacuous_padding_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/row21_positional_tolerance_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/row36_file_scoped_no_sibling_evidence_pos.gwcase +38 -0
- checkwash-0.1.49/tests/cases/runner_bat_swallow_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/runner_build_makefile_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/runner_common_mak_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/runner_justfile_capital_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/runner_justfile_nested_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/runner_makefile_include_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/runner_one_hop_build_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/runner_one_hop_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/runner_opaque_native_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/runner_ps1_swallow_pos.gwcase +26 -0
- checkwash-0.1.49/tests/cases/runner_script_cannot_disarm_pos.gwcase +33 -0
- checkwash-0.1.49/tests/cases/runner_script_errexit_dropped_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/runner_script_errexit_longform_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/runner_script_errexit_modernised_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/runner_script_extensionless_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/runner_script_honest_edit_neg.gwcase +15 -0
- checkwash-0.1.49/tests/cases/runner_script_removed_neg.gwcase +13 -0
- checkwash-0.1.49/tests/cases/runner_script_set_plus_e_pos.gwcase +17 -0
- checkwash-0.1.49/tests/cases/runner_script_suite_removed_pos.gwcase +20 -0
- checkwash-0.1.49/tests/cases/runner_script_switched_runner_neg.gwcase +16 -0
- checkwash-0.1.49/tests/cases/runner_script_weakened_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/runner_sh_or_echo_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/sacrificial_skip_pos.gwcase +29 -0
- checkwash-0.1.49/tests/cases/same_unit_rewrite_neg.gwcase +27 -0
- checkwash-0.1.49/tests/cases/scope_drift_absent_neg.gwcase +12 -0
- checkwash-0.1.49/tests/cases/scope_drift_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/scope_respected_neg.gwcase +33 -0
- checkwash-0.1.49/tests/cases/self_compare_identity_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/self_compare_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/skipif_condition_flipped_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/skiptest_call_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/snapshot_cochange_pos.gwcase +15 -0
- checkwash-0.1.49/tests/cases/snapshot_with_test_change_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/split_rename_genuine_neg.gwcase +23 -0
- checkwash-0.1.49/tests/cases/split_rename_mass_pos.gwcase +40 -0
- checkwash-0.1.49/tests/cases/srclayout_repair_evidence_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/srclayout_sibling_module_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/stub_change_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/subject_argument_replaced_neg.gwcase +22 -0
- checkwash-0.1.49/tests/cases/subject_argument_wrap_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/subject_hoisted_plain_neg.gwcase +21 -0
- checkwash-0.1.49/tests/cases/subject_hoisted_wrap_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/subject_normalized_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/subject_normalized_repaired_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/suppression_added_pos.gwcase +11 -0
- checkwash-0.1.49/tests/cases/suppression_unchanged_neg.gwcase +19 -0
- checkwash-0.1.49/tests/cases/tautology_pos.gwcase +18 -0
- checkwash-0.1.49/tests/cases/tdd_shared_constant_neg.gwcase +25 -0
- checkwash-0.1.49/tests/cases/test_attr_false_class_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/test_attr_false_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/test_deleted_pos.gwcase +22 -0
- checkwash-0.1.49/tests/cases/test_disabled_skip_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/test_patches_subject_mock_patch_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/test_patches_subject_new_test_neg.gwcase +31 -0
- checkwash-0.1.49/tests/cases/test_patches_subject_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/test_patches_subject_stdlib_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/test_patches_subject_unrelated_attr_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/test_patches_subject_via_local_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/test_split_neg.gwcase +26 -0
- checkwash-0.1.49/tests/cases/tolerance_absent_neg.gwcase +23 -0
- checkwash-0.1.49/tests/cases/tolerance_loosened_pos.gwcase +21 -0
- checkwash-0.1.49/tests/cases/tolerance_places_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/tolerance_second_kind_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/tolerance_snan_neg.gwcase +24 -0
- checkwash-0.1.49/tests/cases/tolerance_tightened_neg.gwcase +21 -0
- checkwash-0.1.49/tests/cases/trivial_prod_change_pos.gwcase +28 -0
- checkwash-0.1.49/tests/cases/tuple_assert_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/unfalsifiable_padding_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/unicode_offset_tautology_pos.gwcase +19 -0
- checkwash-0.1.49/tests/cases/unit_moved_credit_spent_once_pos.gwcase +34 -0
- checkwash-0.1.49/tests/cases/unittest_class_aliased_base_pos.gwcase +27 -0
- checkwash-0.1.49/tests/cases/unittest_class_not_named_test_pos.gwcase +25 -0
- checkwash-0.1.49/tests/cases/unittest_isnone_spelling_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/unittest_isnone_true_inversion_pos.gwcase +30 -0
- checkwash-0.1.49/tests/cases/unittest_len_modernize_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/unittest_literal_first_pos.gwcase +32 -0
- checkwash-0.1.49/tests/cases/unittest_self_compare_pos.gwcase +24 -0
- checkwash-0.1.49/tests/cases/unittest_trivial_pad_pos.gwcase +35 -0
- checkwash-0.1.49/tests/cases/unittest_weaken_pos.gwcase +23 -0
- checkwash-0.1.49/tests/cases/unparseable_prod_still_opaque_neg.gwcase +30 -0
- checkwash-0.1.49/tests/cases/unparseable_self_inflicted_pos.gwcase +29 -0
- checkwash-0.1.49/tests/cases/unparseable_test_new_neg.gwcase +9 -0
- checkwash-0.1.49/tests/cases/unparseable_test_regressed_pos.gwcase +20 -0
- checkwash-0.1.49/tests/conftest.py +23 -0
- checkwash-0.1.49/tests/e2e/test_cli.py +608 -0
- checkwash-0.1.49/tests/gates/README.md +32 -0
- checkwash-0.1.49/tests/gates/test_perf.py +73 -0
- checkwash-0.1.49/tests/gates/test_recorded_arms.py +132 -0
- checkwash-0.1.49/tests/gates/test_refactor_corpus.py +107 -0
- checkwash-0.1.49/tests/gates/test_tamper_corpus.py +127 -0
- checkwash-0.1.49/tests/test_action_comments.py +44 -0
- checkwash-0.1.49/tests/test_astutil.py +34 -0
- checkwash-0.1.49/tests/test_bench_command.py +89 -0
- checkwash-0.1.49/tests/test_cases_runner.py +59 -0
- checkwash-0.1.49/tests/test_cli_typos.py +32 -0
- checkwash-0.1.49/tests/test_compare_harness.py +69 -0
- checkwash-0.1.49/tests/test_demo_command.py +42 -0
- checkwash-0.1.49/tests/test_demo_reproduces.py +43 -0
- checkwash-0.1.49/tests/test_detector_coverage.py +121 -0
- checkwash-0.1.49/tests/test_determinism.py +90 -0
- checkwash-0.1.49/tests/test_diffalign.py +62 -0
- checkwash-0.1.49/tests/test_docs_links.py +60 -0
- checkwash-0.1.49/tests/test_doctor.py +554 -0
- checkwash-0.1.49/tests/test_e5_split.py +20 -0
- checkwash-0.1.49/tests/test_finding_shape.py +81 -0
- checkwash-0.1.49/tests/test_frontend.py +277 -0
- checkwash-0.1.49/tests/test_js_frontend.py +28 -0
- checkwash-0.1.49/tests/test_oracle_rules_pinned.py +84 -0
- checkwash-0.1.49/tests/test_packaging.py +410 -0
- checkwash-0.1.49/tests/test_perf_git.py +139 -0
- checkwash-0.1.49/tests/test_satellite_boundary.py +30 -0
- checkwash-0.1.49/tests/test_spec_roles_pinned.py +91 -0
- checkwash-0.1.49/tests/test_state_claims.py +239 -0
- checkwash-0.1.49/tests/test_threatmodel_pinned.py +131 -0
- checkwash-0.1.49/tests/test_zipapp.py +119 -0
- checkwash-0.1.49/tools/emit_corpus.py +61 -0
- checkwash-0.1.49/tools/qualify_zipapp.py +189 -0
- 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,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
|
+
```
|