Skip to content

Commit

Permalink
Singular tests tag to set Airflow DAG (#48)
Browse files Browse the repository at this point in the history
* Singular tests tag to set Airflow DAG

* Changing tag single quotes do double quotes

* Merge master into feature/singular_test_tag
  • Loading branch information
eduardo-nercolini authored Jun 12, 2024
1 parent 3c31f07 commit b76607c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion tests/anomaly_detection_trade_count.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{{ config(severity="warn") }}
{{ config(
severity="warn"
, tags=["singular_test"]
)
}}

with
trade_counts as (
Expand Down
6 changes: 5 additions & 1 deletion tests/anomaly_detection_trade_volume.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{{ config(severity="warn") }}
{{ config(
severity="warn"
, tags=["singular_test"]
)
}}

with
base_trades as (
Expand Down
6 changes: 5 additions & 1 deletion tests/ledger_sequence_increment.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{{ config(severity="warn") }}
{{ config(
severity="warn"
, tags=["singular_test"]
)
}}

with
ledger_sequence as (
Expand Down

0 comments on commit b76607c

Please sign in to comment.