diff --git a/dashboard/dashboard.py b/dashboard/dashboard.py index bb0ae9c..3860a08 100644 --- a/dashboard/dashboard.py +++ b/dashboard/dashboard.py @@ -63,6 +63,10 @@ def latest_per_recipe(): recipe = (b.get("params") or {}).get("RECIPE") if not recipe: continue + # The cc-ci repo's own name isn't a recipe under test (e.g. an Adversary !testme on the + # cc-ci PR); don't list it as a recipe row. + if recipe == CI_REPO.rsplit("/", 1)[-1]: + continue if recipe not in latest or b.get("number", 0) > latest[recipe].get("number", 0): latest[recipe] = b rows = []