Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky committed Feb 4, 2025
1 parent 9fb7bc0 commit aad0f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/worker/jobs/step_run_mock_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class StepRunMockJob(MockJob, StepRunBase):
def __init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime):
super().__init__()
self.checkout_run(run_id)
StepRunBase.__init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime, skip_site_init=True, skip_stop_db_writes=True)
StepRunBase.__init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime)
self.options.warmup_is_first_step = True
self.options.timestep_duration = timedelta(minutes=1)
self.simulation_step_duration = 1
Expand Down

0 comments on commit aad0f83

Please sign in to comment.