Compare commits
No commits in common. "clean_up" and "0.1.0.0" have entirely different histories.
@ -1,7 +1,7 @@
|
|||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
import unittest
|
from unittest import TestCase
|
||||||
|
|
||||||
from pathlib import Path
|
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
|
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:
|
def setUp(self) -> None:
|
||||||
city_file = Path("./tests/data/test.geojson").resolve()
|
city_file = "./data/test.geojson"
|
||||||
output_path = Path('./tests/output/').resolve()
|
output_path = Path('./output/').resolve()
|
||||||
city = GeometryFactory('geojson',
|
city = GeometryFactory('geojson',
|
||||||
city_file,
|
city_file,
|
||||||
height_field='citygml_me',
|
height_field='citygml_me',
|
||||||
|
Loading…
Reference in New Issue
Block a user