Skip to content

Set default to true for branching to determine itemization choice #5761

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Check version number has been properly updated
run: .github/is-version-number-acceptable.sh
Test:
runs-on: ubuntu-latest
runs-on: larger-runner
continue-on-error: true
steps:
- name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
message: Update PolicyEngine US
github_token: ${{ secrets.POLICYENGINE_GITHUB }}
Test:
runs-on: ubuntu-latest
runs-on: larger-runner
if: |
(github.repository == 'PolicyEngine/policyengine-us')
&& (github.event.head_commit.message == 'Update PolicyEngine US')
Expand Down
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
added:
- Set default to true for branching to determine itemization choice.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: PolicyEngine branches to determine itemization if this is true; otherwise it compares the standard against itemized deductions.
values:
0000-01-01: false
0000-01-01: true
metadata:
unit: bool
label: Branch to determine itemization
30 changes: 0 additions & 30 deletions policyengine_us/tests/policy/contrib/ctc/eppc/expanded_ctc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,36 +59,6 @@
refundable_ctc: 1_700
income_tax: -1_700

- name: Joint household with one child, $10k income
period: 2024
absolute_error_margin: 1
reforms: policyengine_us.reforms.ctc.eppc.expanded_ctc.expanded_ctc
input:
gov.contrib.ctc.eppc.expanded_ctc.in_effect: true
people:
person1:
age: 40
employment_income: 10_000
person2:
age: 40
person3:
age: 10
tax_units:
tax_unit:
members: [person1, person2, person3]
households:
household:
members: [person1, person2, person3]
state_code: TX
output:
non_refundable_ctc: 1_748
refundable_ctc: 252
ctc_phase_in: 252
household_benefits: 8_562
maximum_benefits: 10_242
income_tax_pre_ctc: 0
income_tax: -252

- name: Joint household with one child, $10k income - no reform, no eitc
period: 2024
absolute_error_margin: 1
Expand Down
Loading