exclude from daily tests (#290)

This commit is contained in:
Austin 2023-10-31 10:50:18 -04:00 committed by GitHub
parent 9f18b60257
commit ab401ca4c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -42,4 +42,4 @@ jobs:
dbt deps
- name: Run DBT Jobs
run: |
dbt test --exclude "polygon_models,tag:full_test" "polygon_models,tag:recent_test" livequery_models
dbt test --exclude "polygon_models,tag:full_test" "polygon_models,tag:recent_test" "polygon_models,tag:gha_tasks" livequery_models

View File

@ -1,5 +1,6 @@
{{ config(
materialized = 'view'
materialized = 'view',
tags = ['gha_tasks']
) }}
{{ fsc_utils.gha_task_current_status_view() }}