Skip to content
Snippets Groups Projects
Commit 4b077f65 authored by Moritz Huebner's avatar Moritz Huebner
Browse files

Fixed not passing tests

parent eb679713
No related branches found
No related tags found
No related merge requests found
......@@ -381,7 +381,7 @@ class TestDetector(unittest.TestCase):
self.assertEqual(self.ifo.time_delay_from_geocenter(1, 2, 3), 1)
def test_vertex_position_geocentric(self):
with mock.patch('tupak.utils.vertex_position_geocentric') as m:
with mock.patch('tupak.utils.get_vertex_position_geocentric') as m:
m.return_value = 1
self.assertEqual(self.ifo.vertex_position_geocentric(), 1)
......
......@@ -36,11 +36,11 @@ class Test(unittest.TestCase):
def test_examples(self):
""" Loop over examples to check they run """
examples = ['examples/injection_examples/basic_tutorial.py',
'examples/injection_examples/change_sampled_parameters.py',
'examples/injection_examples/marginalized_likelihood.py',
'examples/injection_examples/create_your_own_time_domain_source_model.py',
'examples/other_examples/linear_regression.py',
examples = ['../examples/injection_examples/basic_tutorial.py',
'../examples/injection_examples/change_sampled_parameters.py',
'../examples/injection_examples/marginalized_likelihood.py',
'../examples/injection_examples/create_your_own_time_domain_source_model.py',
'../examples/other_examples/linear_regression.py',
]
for filename in examples:
print("Testing {}".format(filename))
......
......@@ -189,7 +189,6 @@ class TestPriorClasses(unittest.TestCase):
domain = np.linspace(-1e2, 1e2, 1000)
else:
domain = np.linspace(prior.minimum, prior.maximum, 1000)
print(prior.minimum, prior.maximum)
self.assertAlmostEqual(np.trapz(prior.prob(domain), domain), 1, 3)
......
......@@ -126,5 +126,5 @@ class TestSampler(unittest.TestCase):
def test_base_run_sampler(self):
sampler_copy = copy.copy(self.sampler)
self.sampler.run_sampler()
self.sampler._run_external_sampler()
self.assertDictEqual(sampler_copy.__dict__, self.sampler.__dict__)
\ No newline at end of file
......@@ -8,6 +8,7 @@ def gaussian_frequency_domain_strain(frequency_array, amplitude, mu, sigma, ra,
'cross': amplitude * np.exp(-(mu - frequency_array) ** 2 / sigma ** 2 / 2)}
return ht
def gaussian_frequency_domain_strain_2(frequency_array, a, m, s, ra, dec, geocent_time, psi):
ht = {'plus': a * np.exp(-(m - frequency_array) ** 2 / s ** 2 / 2),
'cross': a * np.exp(-(m - frequency_array) ** 2 / s ** 2 / 2)}
......@@ -69,20 +70,6 @@ class TestParameterSetter(unittest.TestCase):
for key in self.simulation_parameters:
self.assertEqual(self.waveform_generator.parameters[key], self.simulation_parameters[key])
def test_parameter_setter_with_unexpected_keys(self):
self.waveform_generator.parameters['foo'] = 1337
def parameter_setter(wg_params, sim_params):
wg_params = sim_params
self.assertRaises(KeyError, parameter_setter(self.waveform_generator.parameters, self.simulation_parameters))
def test_parameter_setter_raises_type_error(self):
a = 4
def parameter_setter(wg_params, sim_params):
wg_params = sim_params
self.assertRaises(TypeError, parameter_setter(self.waveform_generator.parameters, a))
def test_parameter_setter_none_handling(self):
self.waveform_generator.parameters = None
self.assertItemsEqual(self.waveform_generator.parameters.keys(), self.simulation_parameters.keys())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment