Compare commits

..

32 Commits

Author SHA1 Message Date
ca002926f7 Empty-Commit 2023-07-18 16:45:04 -04:00
f4fafa1afa Empty-Commit 2023-07-18 16:06:29 -04:00
91fd120807 Test 2023-07-18 16:06:18 -04:00
569729df59 Test 2023-07-18 15:54:31 -04:00
5aadf2ff50 Remove trailing space 2023-07-18 15:35:44 -04:00
134293f6e3 test 2023-07-18 15:30:34 -04:00
da89983ca9 Empty-Commit 2023-07-18 13:22:32 -04:00
c052690c08 Empty-Commit 2023-07-18 13:21:57 -04:00
7f2084c9c7 Empty-Commit 2023-07-18 13:16:38 -04:00
69f14da4c3 Empty-Commit 2023-07-18 13:14:59 -04:00
44559bcf00 Empty-Commit 2023-07-18 12:28:57 -04:00
bde6ff90f5 Empty-Commit 2023-07-18 12:27:29 -04:00
a6381141e0 Empty-Commit 2023-07-18 12:19:43 -04:00
3f152e00e3 Empty-Commit 2023-07-18 12:16:38 -04:00
fd3afe5b2d Empty-Commit 2023-07-18 12:16:05 -04:00
8c094244de Empty-Commit 2023-07-18 12:12:11 -04:00
b6cbfc0c06 Empty-Commit 2023-07-18 12:11:13 -04:00
e470aafd80 Empty-Commit 2023-07-18 12:01:28 -04:00
037b6915dd Empty-Commit 2023-07-18 11:58:28 -04:00
8053de22b3 Empty-Commit 2023-07-18 11:50:46 -04:00
064cdf600f Empty-Commit 2023-07-18 11:49:28 -04:00
75127e6b36 Empty-Commit 2023-07-18 11:46:29 -04:00
f8bf442ae1 Empty-Commit 2023-07-18 11:45:23 -04:00
538b82d413 Empty-Commit 2023-07-18 11:44:15 -04:00
746def3dfa Empty-Commit 2023-07-18 11:37:03 -04:00
8733108c52 Empty-Commit 2023-07-18 11:34:19 -04:00
4381b1e4c7 Empty-Commit 2023-07-18 11:33:11 -04:00
e7cf14b8ca Empty-Commit 2023-07-18 11:23:54 -04:00
d311b7292e Empty-Commit 2023-07-18 11:16:35 -04:00
dc0e0dcfcf Empty-Commit 2023-07-18 11:14:55 -04:00
746788b60c Empty-Commit 2023-07-18 11:10:28 -04:00
8deb92480b test web_hook 2023-07-18 11:05:29 -04:00

View File

@ -1,7 +1,7 @@
import glob
import os
import subprocess
from unittest import TestCase
import unittest
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(TestCase):
class UnitTests(unittest.TestCase):
def setUp(self) -> None:
city_file = "./data/test.geojson"
output_path = Path('./output/').resolve()
city_file = Path("./tests/data/test.geojson").resolve()
output_path = Path('./tests/output/').resolve()
city = GeometryFactory('geojson',
city_file,
height_field='citygml_me',