Skip to content

Commit

Permalink
Merge pull request #211 from sot/fewer-bad-stars
Browse files Browse the repository at this point in the history
Use a different bad star for bad star test
  • Loading branch information
jeanconn authored Aug 21, 2024
2 parents 0038d99 + 6a5fef4 commit ab63afa
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions sparkles/tests/test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,9 +745,8 @@ def test_imposters_on_guide(exp_warn, aca_review_table):


@pytest.mark.parametrize("aca_review_table", (ACAReviewTable, ACACheckTable))
def test_bad_star_set(proseco_agasc_1p7, aca_review_table):
# This faint star is no longer in proseco_agasc >= 1.8 so we use 1.7
bad_id = 1248994952
def test_bad_star_set(aca_review_table):
bad_id = 260713672
star = agasc.get_star(bad_id)
ra = star["RA"]
dec = star["DEC"]
Expand All @@ -760,17 +759,13 @@ def test_bad_star_set(proseco_agasc_1p7, aca_review_table):
check_catalog(acar)
assert acar.messages == [
{
"text": "Guide star 1248994952 does not meet guide candidate criteria",
"category": "critical",
"idx": 5,
},
{
"text": "Star 1248994952 is in proseco bad star set",
"text": f"Star {bad_id} is in proseco bad star set",
"category": "critical",
"idx": 5,
},
{"category": "warning", "text": "P2: 2.39 less than 3.0 for OR"},
{"text": "OR requested 0 fids but 3 is typical", "category": "caution"},
{"category": "info", "text": "included guide ID(s): [1248994952]"},
{"category": "info", "text": f"included guide ID(s): [{bad_id}]"},
]


Expand Down

0 comments on commit ab63afa

Please sign in to comment.