assert_array_almost_equal(_preds, _other_preds)
// now remove the pickle file
os.unlink(fl)
// now show that since we fit the ARIMA with an exogenous array,
// we need to provide one for predictions otherwise it breaks.
with pytest.raises(ValueError):
After Change
// pickle this for the __get/setattr__ coverage.
// since the only time this is tested is in parallel in auto.py,
// this doesn"t actually get any coverage proof...
fl = os.path.join(tdir, "some_temp_file.pkl")
with open(fl, "wb") as p:
pickle.dump(arima, p)
// show we can predict with this even though it"s been pickled