From f4d2c6c969bb7e3b404c73374737031455442ab4 Mon Sep 17 00:00:00 2001 From: Dennis Thiessen Date: Sun, 24 May 2026 18:50:38 +0200 Subject: [PATCH] chore(job_scout): drop AMINA Bank from MANUAL_CHECK (poor Glassdoor) AMINA Bank rates poorly on Glassdoor and isn't worth tracking. Remove its manual-check entry, leaving Bitcoin Suisse as the only manual source. Co-Authored-By: Claude Opus 4.7 --- job_scout/scout.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/job_scout/scout.py b/job_scout/scout.py index eb5266a..5c93c04 100644 --- a/job_scout/scout.py +++ b/job_scout/scout.py @@ -217,8 +217,6 @@ COMPANIES = [ # Companies where adapter probing did not yield a reliable scrape. Reasons noted. # These surface as a clickable checklist in the report so they're not forgotten. MANUAL_CHECK = [ - ("AMINA Bank", "jobs are at /careers/ (#positions) via JS widget; only ~4 apply links, no scrapable list", - "https://aminagroup.com/careers/#positions"), ("Bitcoin Suisse", "jobs under /careers#open-positions load via JS widget; section empty at scrape time (likely no/few openings)", "https://bitcoinsuisse.com/careers#open-positions"), ] @@ -813,7 +811,7 @@ def main(): # === Adapter coverage (refreshed 2026-05-24) ================================== -# 21 companies automated across 9 adapter types; 2 remain in MANUAL_CHECK. +# 21 companies automated across 9 adapter types; 1 remains in MANUAL_CHECK. # # Automated (COMPANIES above): # workday nvidia, novartis @@ -836,9 +834,9 @@ def main(): # itself. Coinbase-the-employer was dropped from MANUAL_CHECK (mass layoffs / hiring # freeze as of 2026-05; re-add coinbase.com/careers if they reopen). # -# Still manual (MANUAL_CHECK above) — to automate, each needs a real-browser probe: -# AMINA aminagroup.com/careers JS widget, ~4 apply links, low volume +# Still manual (MANUAL_CHECK above) — to automate, it needs a real-browser probe: # Bitcoin Suisse bitcoinsuisse.com/careers JS widget, empty at scrape time, low volume +# (AMINA Bank was dropped — poor Glassdoor rating, not worth tracking.) # ==============================================================================