Skip to content

Commit

Permalink
Report warnings and errors (#212)
Browse files Browse the repository at this point in the history
May have accidentely been surpressing errors - that could be reporting why the test fails
  • Loading branch information
IanGrimstead authored and thanasions committed Mar 25, 2019
1 parent 3917215 commit 5a43362
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/algorithms/arima.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def __init__(self, data_in, num_prediction_periods):
self.__stepwise_model = auto_arima(
data_in,
seasonal=False,
error_action='ignore', suppress_warnings=True, stepwise=True
# error_action='ignore', suppress_warnings=True,
stepwise=True
)

@property
Expand Down

0 comments on commit 5a43362

Please sign in to comment.