only direct downstream, not all downstream

This commit is contained in:
Pablo Martin 2025-03-24 16:27:15 +01:00
parent 5b6f0a6bc4
commit ddc38ef513

View file

@ -104,18 +104,18 @@ steps:
set -a && source .env && set +a
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: |
source venv/bin/activate
set -a && source .env && set +a
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: |
set -a && source .env && set +a