From fd61002f90c083c2b21a7508dbff6de147c53978 Mon Sep 17 00:00:00 2001
From: "rhys.green" <rhys.green@ligo.org>
Date: Thu, 10 Jan 2019 20:24:15 +0000
Subject: [PATCH] adding basic unit test of ptmcmc

---
 test/sampler_test.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/test/sampler_test.py b/test/sampler_test.py
index f3ba3ffb5..a2b76a4ab 100644
--- a/test/sampler_test.py
+++ b/test/sampler_test.py
@@ -438,6 +438,11 @@ class TestRunningSamplers(unittest.TestCase):
             likelihood=self.likelihood, priors=self.priors,
             sampler='pymultinest', nlive=100, save=False)
 
+    def test_run_PTMCMCSampler(self):
+        _ = bilby.run_sampler(
+            likelihood=self.likelihood, priors=self.priors,
+            sampler= 'PTMCMCsampler'', Niter=100, save=False)
+
 
 if __name__ == '__main__':
     unittest.main()
-- 
GitLab