-
Notifications
You must be signed in to change notification settings - Fork 194
Add Medicaid work requirement reform #6160
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
base: master
Are you sure you want to change the base?
Add Medicaid work requirement reform #6160
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #6160 +/- ##
=======================================
Coverage 99.21% 99.21%
=======================================
Files 2954 2954
Lines 42350 42352 +2
Branches 202 203 +1
=======================================
+ Hits 42016 42018 +2
Misses 300 300
Partials 34 34 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code overall looks correct, but I think we need to add the provision that says if you're deemed ineligbile for medicaid due to the work requirement you cannot get ACA coverage.
policyengine_us/parameters/gov/contrib/reconciliation/medicaid_work_requirement/in_effect.yaml
Outdated
Show resolved
Hide resolved
...meters/gov/contrib/reconciliation/medicaid_work_requirement/work_exempted_age_threshold.yaml
Outdated
Show resolved
Hide resolved
...parameters/gov/contrib/reconciliation/medicaid_work_requirement/monthly_hours_threshold.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/parameters/gov/contrib/reconciliation/medicaid_work_requirement/in_effect.yaml
Outdated
Show resolved
Hide resolved
...meters/gov/contrib/reconciliation/medicaid_work_requirement/work_exempted_age_threshold.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/reforms/reconciliation/reconciled_medicaid_work_requirement.py
Outdated
Show resolved
Hide resolved
policyengine_us/reforms/reconciliation/reconciled_medicaid_work_requirement.py
Outdated
Show resolved
Hide resolved
...meters/gov/contrib/reconciliation/medicaid_work_requirement/work_exempted_age_threshold.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/reforms/reconciliation/reconciled_medicaid_work_requirement.py
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@daphnehanse11 please file a separate issue on ACA
...meters/gov/contrib/reconciliation/medicaid_work_requirement/work_exempted_age_threshold.yaml
Outdated
Show resolved
Hide resolved
| eligible_parent | ||
| eligible_veteran | ||
| eligible_disabled | ||
) | ||
return where( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return where( | |
return work_required_age | meets_monthly_work_hours | exempted_from_work |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the person is within the work required age, then this person must (meets_monthly_hours | exempted_from_work)
to be eligible for this variable.
If the person is outside the work required age, then this person is always eligible for this variable.
My initial approach is this ~work_required_age | (meets_monthly_work_hours | exempted_from_work)
but the ~
does not work on this parameter.
Fixes #6135