only direct downstream, not all downstream
This commit is contained in:
parent
5b6f0a6bc4
commit
ddc38ef513
1 changed files with 4 additions and 4 deletions
|
|
@ -104,18 +104,18 @@ steps:
|
||||||
set -a && source .env && set +a
|
set -a && source .env && set +a
|
||||||
export IS_CI_EXECUTION=1
|
export IS_CI_EXECUTION=1
|
||||||
|
|
||||||
dbt run --select "state:modified+" --exclude "state:modified" --state ~/dbt-ci/master-artifacts/ --defer
|
dbt run --select "state:modified+1" --exclude "state:modified" --state ~/dbt-ci/master-artifacts/ --defer
|
||||||
|
|
||||||
displayName: 'Run downstream models'
|
displayName: 'Run direct dependants of modified models'
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
set -a && source .env && set +a
|
set -a && source .env && set +a
|
||||||
export IS_CI_EXECUTION=1
|
export IS_CI_EXECUTION=1
|
||||||
|
|
||||||
dbt test --select "state:modified+" --exclude "state:modified" --state ~/dbt-ci/master-artifacts/ --defer
|
dbt test --select "state:modified+1" --exclude "state:modified" --state ~/dbt-ci/master-artifacts/ --defer
|
||||||
|
|
||||||
displayName: 'Test downstream models'
|
displayName: 'Test direct dependants of modified models'
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
set -a && source .env && set +a
|
set -a && source .env && set +a
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue