From 1be6ac4c49878ec23b3fcd35eb2cfc1a848d7637 Mon Sep 17 00:00:00 2001 From: Colm Talbot <colm.talbot@ligo.org> Date: Thu, 16 Apr 2020 09:40:46 -0500 Subject: [PATCH] Change seed for sampling from the prior --- .gitlab-ci.yml | 1 + test/sample_from_the_prior_test.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 319010cdb..8c6dc94b4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -83,6 +83,7 @@ python-3.7-samplers: - python -m pip install . - pytest test/sampler_test.py --durations 10 + - pytest test/sample_from_the_prior_test.py # test samplers on python 3.6 python-3.6-samplers: diff --git a/test/sample_from_the_prior_test.py b/test/sample_from_the_prior_test.py index fb45120a6..aeda281ae 100644 --- a/test/sample_from_the_prior_test.py +++ b/test/sample_from_the_prior_test.py @@ -43,7 +43,7 @@ class Test(unittest.TestCase): duration = 4. sampling_frequency = 2048. label = 'full_15_parameters' - np.random.seed(88170235) + np.random.seed(8817023) waveform_arguments = dict(waveform_approximant='IMRPhenomPv2', reference_frequency=50., minimum_frequency=20.) -- GitLab