From d9bea6196981bfcedae40525e702d424d26e7cd0 Mon Sep 17 00:00:00 2001 From: Ben Letham Date: Mon, 9 Mar 2020 15:20:25 -0700 Subject: [PATCH] Remvoe no longer necessary test --- python/fbprophet/tests/test_diagnostics.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/python/fbprophet/tests/test_diagnostics.py b/python/fbprophet/tests/test_diagnostics.py index b374e8d..a21971a 100644 --- a/python/fbprophet/tests/test_diagnostics.py +++ b/python/fbprophet/tests/test_diagnostics.py @@ -63,21 +63,6 @@ class TestDiagnostics(TestCase): diagnostics.cross_validation( m, horizon='10 days', period='10 days', initial='140 days') - def test_invalid_args_multiprocess(self): - m = Prophet() - m.fit(self.__df) - # Calculate the number of cutoff points(k) - horizon = pd.Timedelta('4 days') - period = pd.Timedelta('10 days') - initial = pd.Timedelta('115 days') - # Run for both cases of multiprocess on or off - for multiprocess in [1, 'yes']: - with self.assertRaises(ValueError): - df_cv = diagnostics.cross_validation( - m, horizon='4 days', period='10 days', initial='115 days', - multiprocess=multiprocess) - - def test_check_single_cutoff_forecast_func_calls(self): m = Prophet() m.fit(self.__df)