Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test ci #85

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions models/marts/customer360/order_items.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ saved_queries:
query_params:
metrics:
- revenue
group_by:
- TimeDimension('metric_time', 'week')
- order_total
exports:
- name: weekly_revenue
config:
Expand Down
3 changes: 2 additions & 1 deletion models/marts/customer360/orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ compute_booleans as (
orders.*,
count_food_items > 0 as is_food_order,
count_drink_items > 0 as is_drink_order,
order_cost
order_cost,
1 AS test

from orders

Expand Down
4 changes: 2 additions & 2 deletions models/staging/__sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2

sources:
- name: ecom
schema: dbt_sl_test
schema: dev_willdeng_prod
description: E-commerce data
tables:
- name: raw_customers
Expand Down Expand Up @@ -33,7 +33,7 @@ sources:
- name: raw_supplies
description: One record per supply per SKU of items sold in stores
- name: conversion_sources
schema: '{{ target.schema }}'
schema: dev_willdeng_prod
description: Source data for conversion metrics
tables:
- name: olist_closed_deals_dataset
Expand Down
Loading