diff --git a/levergreen_dbt/tests/check_expected_careers_pages_scraped.sql b/levergreen_dbt/tests/check_expected_careers_pages_scraped.sql index fadc4e1..69c8887 100644 --- a/levergreen_dbt/tests/check_expected_careers_pages_scraped.sql +++ b/levergreen_dbt/tests/check_expected_careers_pages_scraped.sql @@ -1,4 +1,4 @@ -{# {{ config(severity = 'warn') }} #} +{{ config(severity = 'warn') }} --config must be of the bracket comment format or it doesn't comment it. -- here we are checking if the scraper did correctly scrape jobs for each careers_page diff --git a/levergreen_dbt/tests/check_expected_careers_pages_scraped_excl_rhino.sql b/levergreen_dbt/tests/check_expected_careers_pages_scraped_excl_rhino.sql index 7143d11..7a27745 100644 --- a/levergreen_dbt/tests/check_expected_careers_pages_scraped_excl_rhino.sql +++ b/levergreen_dbt/tests/check_expected_careers_pages_scraped_excl_rhino.sql @@ -1,4 +1,4 @@ -{{ config(enabled=false) }} +{{ config(enabled=true, severity = 'warn') }} --disable when Rhino has jobs -- here we are checking if the scraper did correctly scrape jobs for each careers_page @@ -9,6 +9,7 @@ with expected_sources as ( from {{ source('levergreen', 'job_board_urls') }} where is_enabled and url != 'https://boards.greenhouse.io/rhino' --rhino has no job postings active currently + and url != 'https://boards.greenhouse.io/supabase' ), actual_sources as (