File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -574,9 +574,9 @@ def test_invalid_trigger_combination(tmpdir):
574574 with pytest .raises (MisconfigurationException , match = r'.*Combination of parameters every_n_train_steps' ):
575575 ModelCheckpoint (dirpath = tmpdir , every_n_train_steps = 1 , every_n_val_epochs = 2 )
576576 with pytest .raises (MisconfigurationException , match = r'.*Combination of parameters every_n_train_steps' ):
577- _ = ModelCheckpoint (train_time_interval = timedelta (minutes = 1 ), every_n_val_epochs = 2 )
577+ ModelCheckpoint (train_time_interval = timedelta (minutes = 1 ), every_n_val_epochs = 2 )
578578 with pytest .raises (MisconfigurationException , match = r'.*Combination of parameters every_n_train_steps' ):
579- _ = ModelCheckpoint (train_time_interval = timedelta (minutes = 1 ), every_n_train_steps = 2 )
579+ ModelCheckpoint (train_time_interval = timedelta (minutes = 1 ), every_n_train_steps = 2 )
580580
581581 # These should not fail
582582 ModelCheckpoint (dirpath = tmpdir , every_n_train_steps = 0 , every_n_val_epochs = 3 )
You can’t perform that action at this time.
0 commit comments