Compare commits
32 Commits
Author | SHA1 | Date | |
---|---|---|---|
ca002926f7 | |||
f4fafa1afa | |||
91fd120807 | |||
569729df59 | |||
5aadf2ff50 | |||
134293f6e3 | |||
da89983ca9 | |||
c052690c08 | |||
7f2084c9c7 | |||
69f14da4c3 | |||
44559bcf00 | |||
bde6ff90f5 | |||
a6381141e0 | |||
3f152e00e3 | |||
fd3afe5b2d | |||
8c094244de | |||
b6cbfc0c06 | |||
e470aafd80 | |||
037b6915dd | |||
8053de22b3 | |||
064cdf600f | |||
75127e6b36 | |||
f8bf442ae1 | |||
538b82d413 | |||
746def3dfa | |||
8733108c52 | |||
4381b1e4c7 | |||
e7cf14b8ca | |||
d311b7292e | |||
dc0e0dcfcf | |||
746788b60c | |||
8deb92480b |
@ -1,7 +1,7 @@
|
|||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
from unittest import TestCase
|
import unittest
|
||||||
|
|
||||||
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(TestCase):
|
class UnitTests(unittest.TestCase):
|
||||||
def setUp(self) -> None:
|
def setUp(self) -> None:
|
||||||
city_file = "./data/test.geojson"
|
city_file = Path("./tests/data/test.geojson").resolve()
|
||||||
output_path = Path('./output/').resolve()
|
output_path = Path('./tests/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