Skip to content
Snippets Groups Projects
Commit 8a1662db authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Merge branch '397-nightly-scheduled-tests-failing' into 'master'

Resolve "Nightly scheduled tests failing"

Closes #397

See merge request !565
parents 35b2abfb d746f8f7
No related branches found
No related tags found
1 merge request!565Resolve "Nightly scheduled tests failing"
Pipeline #72412 passed with warnings
......@@ -2,13 +2,22 @@ from __future__ import absolute_import
import shutil
import os
import logging
from packaging import version
import unittest
import numpy as np
import bilby
import scipy
from scipy.stats import ks_2samp, kstest
def ks_2samp_wrapper(data1, data2):
if version.parse(scipy.__version__) >= version.parse("1.3.0"):
return ks_2samp(data1, data2, alternative="two-sided", mode="asymp")
else:
return ks_2samp(data1, data2)
class Test(unittest.TestCase):
outdir = 'outdir_for_tests'
......@@ -70,8 +79,8 @@ class Test(unittest.TestCase):
result = bilby.run_sampler(
likelihood=likelihood, priors=priors, sampler='dynesty',
npoints=1000, walks=100, outdir=self.outdir, label=label)
pvalues = [ks_2samp(result.priors[key].sample(10000),
result.posterior[key].values).pvalue
pvalues = [ks_2samp_wrapper(result.priors[key].sample(10000),
result.posterior[key].values).pvalue
for key in priors.keys()]
print("P values per parameter")
for key, p in zip(priors.keys(), pvalues):
......
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