Loading tests/defaultprops→tests/resources/test_input/scenarios/defaultprops +0 −0 File moved. View file tests/ga4aprops→tests/resources/test_input/scenarios/ga4aprops +0 −0 File moved. View file tests/test_JVM_start.pydeleted 100644 → 0 +0 −20 Original line number Diff line number Diff line from unittest.case import TestCase, skip from thermogis_classes.jvm_start import start_jvm import os class JVM(TestCase): @skip def test_JVM_start_JAVA_HOME_environment_variable_not_set(self): os.environ["JAVA_HOME"] = "dummy" # Act & Assert with self.assertRaises(FileNotFoundError): start_jvm() @skip def test_JVM_start_THERMOGIS_JAR_environment_variable_not_set(self): os.environ["THERMOGIS_JAR"] = "dummy" # Act & Assert with self.assertRaises(FileNotFoundError): start_jvm() No newline at end of file tests/test_doublet_speed.py +0 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,6 @@ class PyThermoGIS(TestCase): def tearDown(self): shutil.rmtree(self.test_files_out_path) @skip def test_doublet_speed(self): input_grids = self.read_input_grids() p_values = [10,50,90] Loading tests/test_doublet.py→tests/test_thermogis_scenarios.py +0 −0 File moved. View file Loading
tests/test_JVM_start.pydeleted 100644 → 0 +0 −20 Original line number Diff line number Diff line from unittest.case import TestCase, skip from thermogis_classes.jvm_start import start_jvm import os class JVM(TestCase): @skip def test_JVM_start_JAVA_HOME_environment_variable_not_set(self): os.environ["JAVA_HOME"] = "dummy" # Act & Assert with self.assertRaises(FileNotFoundError): start_jvm() @skip def test_JVM_start_THERMOGIS_JAR_environment_variable_not_set(self): os.environ["THERMOGIS_JAR"] = "dummy" # Act & Assert with self.assertRaises(FileNotFoundError): start_jvm() No newline at end of file
tests/test_doublet_speed.py +0 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,6 @@ class PyThermoGIS(TestCase): def tearDown(self): shutil.rmtree(self.test_files_out_path) @skip def test_doublet_speed(self): input_grids = self.read_input_grids() p_values = [10,50,90] Loading