From b5004f0a4c589aa524f99dc79e32f6edcbecd30f Mon Sep 17 00:00:00 2001 From: Chris Diesch Date: Fri, 28 Mar 2025 16:15:41 -0600 Subject: [PATCH] Add skeleton function to the controller. Add pytest to requirements.txt --- app/MRE/api/controller.py | 3 +++ requirements.txt | 1 + 2 files changed, 4 insertions(+) diff --git a/app/MRE/api/controller.py b/app/MRE/api/controller.py index 748ff15..436b3ed 100644 --- a/app/MRE/api/controller.py +++ b/app/MRE/api/controller.py @@ -14,6 +14,9 @@ TODO: Implement this. def compute_tic_fee(home_price: float) -> float: return None +''' +TODO: Implement this +''' def compute_max_tic_fee(consumer_income: float, consumer_fico: int) -> float: return None diff --git a/requirements.txt b/requirements.txt index 03d7fbe..ee9b6e3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ flask-restx==1.3.0 pyopenssl==25.0.0 werkzeug==3.1.3 jinja2==3.1.6 +pytest==8.3.5