Compare commits

..

No commits in common. "clean_up" and "0.1.0.0" have entirely different histories.

View File

@ -1,7 +1,7 @@
import glob
import os
import subprocess
import unittest
from unittest import TestCase
from pathlib import Path
@ -18,10 +18,10 @@ from costs.cost import Cost
from costs.constants import SKIN_RETROFIT, SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV, SYSTEM_RETROFIT_AND_PV
class UnitTests(unittest.TestCase):
class UnitTests(TestCase):
def setUp(self) -> None:
city_file = Path("./tests/data/test.geojson").resolve()
output_path = Path('./tests/output/').resolve()
city_file = "./data/test.geojson"
output_path = Path('./output/').resolve()
city = GeometryFactory('geojson',
city_file,
height_field='citygml_me',