File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -248,6 +248,17 @@ def mock_run_automl_forecasting_training_job(mock_forecasting_training_job):
248
248
with patch .object (mock_forecasting_training_job , "run" ) as mock :
249
249
yield mock
250
250
251
+ @pytest .fixture
252
+ def mock_get_automl_forecasting_seq2seq_training_job (mock_forecasting_training_job ):
253
+ with patch .object (aiplatform , "SequenceToSequencePlusForecastingTrainingJob" ) as mock :
254
+ mock .return_value = mock_forecasting_training_job
255
+ yield mock
256
+
257
+
258
+ @pytest .fixture
259
+ def mock_run_automl_forecasting_seq2seq_training_job (mock_forecasting_training_job ):
260
+ with patch .object (mock_forecasting_training_job , "run" ) as mock :
261
+ yield mock
251
262
252
263
@pytest .fixture
253
264
def mock_get_automl_image_training_job (mock_image_training_job ):
You can’t perform that action at this time.
0 commit comments