Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

# Configuration for Hi Goodtimes multi-repoint dependencies
# Total number of repoints to include when processing goodtimes (including target).
HI_GOODTIMES_NUM_NEAREST_REPOINTS = 7
HI_GOODTIMES_NUM_NEAREST_REPOINTS = 9


@dataclass
Expand Down
6 changes: 6 additions & 0 deletions tests/lambda_endpoints/test_dependency_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3014,6 +3014,12 @@ def pointing_table_entries(session):
class TestHiGoodtimesHelpers:
"""Test coverage for Hi Goodtimes helper functions."""

def test_hi_goodtimes_num_nearest_repoints_default(self):
"""Test default number of repoints for Hi Goodtimes processing."""
from sds_data_manager.lambda_code.SDSCode.pipeline_lambdas import dependency

assert dependency.HI_GOODTIMES_NUM_NEAREST_REPOINTS == 9

def test_check_pointing_exists_true(self, pointing_table_entries, session):
"""Test _check_pointing_exists returns True when pointing exists."""
from sds_data_manager.lambda_code.SDSCode.pipeline_lambdas.dependency import (
Expand Down
Loading