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

DONT APPROVE BEFORE 55! 0.9.9.1 - test_overwrite per column instead of model and fk at_least_one #57

Merged
Merged
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
Binary file modified docs/build/doctrees/commands.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/configuration.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/build/doctrees/index.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/installation.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/usage.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/warehouse_support.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 610aca55044cd6d5f05815973608c6b0
config: 8e4237328d41fbc40777723e23758f0e
tags: 645f666f9bcd5a90fca523b33c5a78b7
33 changes: 16 additions & 17 deletions docs/build/html/_sources/configuration.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,32 +17,21 @@ To differentiate between multiple warehouse targets within the profiles.yaml fil
openai_field_descriptions_path: warehouse_docs
openai_field_descriptions_filename: openai_field_descriptions

test_schemas:
- lewis_analytics_dev_staging
- lewis_analytics_dev_integration
- lewis_analytics_dev


test_overwrite:
models:
wh_marketing__web_event_items_fact:
web_event_item_pk:
- not_null
- dbt_utils.at_least_one
- unique
web_event_parameter_float_value:
- dbt_utils.at_least_one
web_event_item_pk:
- not_null
- dbt_utils.at_least_one
- unique
web_event_parameter_float_value:
- dbt_utils.at_least_one

test_ignore:
models:
- base_backend__web_events
- base_ga4__web_events


dbml_schemas:
- lewis_analytics_dev_staging
- lewis_analytics_dev_integration
- lewis_analytics_dev

dbml_filenames:
- test_10
Expand Down Expand Up @@ -147,6 +136,16 @@ profile example::

openai_secret: sk-wdfnwfw40t493t304t9340t94wet0et90edf (example)

test_schemas:
- lewis_analytics_dev_staging
- lewis_analytics_dev_integration
- lewis_analytics_dev

dbml_schemas:
- lewis_analytics_dev_staging
- lewis_analytics_dev_integration
- lewis_analytics_dev

--------------

**warehouse_name options**
Expand Down
55 changes: 26 additions & 29 deletions docs/build/html/_static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -222,7 +222,7 @@ table.modindextable td {
/* -- general body styles --------------------------------------------------- */

div.body {
min-width: 450px;
min-width: 360px;
max-width: 800px;
}

Expand All @@ -237,16 +237,6 @@ a.headerlink {
visibility: hidden;
}

a.brackets:before,
span.brackets > a:before{
content: "[";
}

a.brackets:after,
span.brackets > a:after {
content: "]";
}

h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hover > a.headerlink,
Expand Down Expand Up @@ -335,12 +325,16 @@ p.sidebar-title {
font-weight: bold;
}

nav.contents,
aside.topic,
div.admonition, div.topic, blockquote {
clear: left;
}

/* -- topics ---------------------------------------------------------------- */

nav.contents,
aside.topic,
div.topic {
border: 1px solid #ccc;
padding: 7px;
Expand Down Expand Up @@ -379,13 +373,17 @@ div.body p.centered {

div.sidebar > :last-child,
aside.sidebar > :last-child,
nav.contents > :last-child,
aside.topic > :last-child,
div.topic > :last-child,
div.admonition > :last-child {
margin-bottom: 0;
}

div.sidebar::after,
aside.sidebar::after,
nav.contents::after,
aside.topic::after,
div.topic::after,
div.admonition::after,
blockquote::after {
Expand Down Expand Up @@ -428,10 +426,6 @@ table.docutils td, table.docutils th {
border-bottom: 1px solid #aaa;
}

table.footnote td, table.footnote th {
border: 0 !important;
}

th {
text-align: left;
padding-right: 5px;
Expand Down Expand Up @@ -615,19 +609,26 @@ ul.simple p {
margin-bottom: 0;
}

dl.footnote > dt,
dl.citation > dt {
aside.footnote > span,
div.citation > span {
float: left;
margin-right: 0.5em;
}

dl.footnote > dd,
dl.citation > dd {
aside.footnote > span:last-of-type,
div.citation > span:last-of-type {
padding-right: 0.5em;
}
aside.footnote > p {
margin-left: 2em;
}
div.citation > p {
margin-left: 4em;
}
aside.footnote > p:last-of-type,
div.citation > p:last-of-type {
margin-bottom: 0em;
}

dl.footnote > dd:after,
dl.citation > dd:after {
aside.footnote > p:last-of-type:after,
div.citation > p:last-of-type:after {
content: "";
clear: both;
}
Expand All @@ -644,10 +645,6 @@ dl.field-list > dt {
padding-right: 5px;
}

dl.field-list > dt:after {
content: ":";
}

dl.field-list > dd {
padding-left: 0.5em;
margin-top: 0em;
Expand Down
Loading