mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
setup test
This commit is contained in:
parent
4dfa32ca1f
commit
19a8981527
1 changed files with 10 additions and 0 deletions
|
|
@ -4,6 +4,16 @@ import os
|
|||
from unittest.mock import Mock
|
||||
from model_data.recommendations.FloorRecommendations import FloorRecommendations
|
||||
|
||||
with open(
|
||||
os.path.abspath(os.path.dirname(__file__)) + "/model_data/tests/test_data/input_properties.pkl", "rb"
|
||||
) as f:
|
||||
input_properties = pickle.load(f)
|
||||
|
||||
with open(
|
||||
os.path.abspath(os.path.dirname(__file__)) + "/model_data/tests/test_data/uvalue_estimates.pkl", "rb"
|
||||
) as f:
|
||||
uvalue_estimates = pickle.load(f)
|
||||
|
||||
|
||||
class TestWallRecommendations:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue