Skip to content

Commit e80f234

Browse files
committed
fix(ci): use dbt seeds directly, remove parquet transformation macro
- Update CI workflow to run dbt seed before build - Remove create_test_tables macro (no longer needed) - Add quote_character config to seed schema for CSV parsing - Staging models now use CSV column names directly
1 parent 44a0f0a commit e80f234

File tree

3 files changed

+12
-122
lines changed

3 files changed

+12
-122
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ jobs:
6969
- name: Run dbt build (with test data)
7070
working-directory: integration_tests
7171
run: |
72-
# Create test tables from parquet files
73-
dbt run-operation create_test_tables
74-
# Build all models
72+
# Load seed data and build all models
73+
dbt seed
7574
dbt build --full-refresh
7675
7776
# Optional: SQLFluff linting (runs after compile for dbt templater)

integration_tests/macros/test_helpers.sql

Lines changed: 0 additions & 115 deletions
This file was deleted.

integration_tests/seeds/schema.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ seeds:
77
timestamp: timestamp
88
observed_timestamp: bigint
99
severity_number: integer
10+
quote_character: '"'
1011

1112
- name: raw_spans
1213
config:
@@ -20,20 +21,25 @@ seeds:
2021
dropped_events_count: integer
2122
dropped_links_count: integer
2223
flags: integer
24+
quote_character: '"'
2325

2426
- name: raw_gauge
2527
config:
2628
column_types:
2729
timestamp: timestamp
2830
start_timestamp: bigint
29-
value_double: double
30-
value_int: bigint
31+
value: double
32+
quote_character: '"'
3133

3234
- name: raw_sum
3335
config:
3436
column_types:
3537
timestamp: timestamp
3638
start_timestamp: bigint
37-
value_double: double
38-
value_int: bigint
39+
value: double
3940
is_monotonic: boolean
41+
quote_character: '"'
42+
43+
- name: claude_code_events
44+
config:
45+
quote_character: '"'

0 commit comments

Comments
 (0)