From a721eda16a4dbf9155482c6b8ff8451702b86e10 Mon Sep 17 00:00:00 2001 From: Adrian Price-Whelan Date: Wed, 12 Dec 2018 09:17:30 -0500 Subject: [PATCH] comment out trend test --- thejoker/sampler/tests/test_params.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thejoker/sampler/tests/test_params.py b/thejoker/sampler/tests/test_params.py index abeb5b34..cb957e79 100644 --- a/thejoker/sampler/tests/test_params.py +++ b/thejoker/sampler/tests/test_params.py @@ -12,8 +12,8 @@ def test_init(): assert pars.jitter.value == 0 # test invalid input - with pytest.raises(TypeError): - pars = JokerParams(P_min=8.*u.day, P_max=8192*u.day, trend="derp") + # with pytest.raises(TypeError): + # pars = JokerParams(P_min=8.*u.day, P_max=8192*u.day, trend="derp") with pytest.raises(ValueError): pars = JokerParams(P_min=8.*u.day, P_max=8192*u.day, jitter="derp")