import urllib3 | |
from functions import calculate_results | |
def test_scores(): | |
with urllib3.PoolManager() as pool: | |
results = calculate_results("T145/ZEUS-8B-V2", pool) | |
# If any calculation is off, this should be wrong | |
assert(results["Average"] == 30.07) | |