mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
13 lines
354 B
Bash
Executable File
13 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Running tests for the first project"
|
|
cd integration_tests
|
|
dbt deps --target $1 || exit 1
|
|
dbt build -x --target $1 --full-refresh || exit 1
|
|
|
|
echo "Running tests for the second project"
|
|
cd ../integration_tests_2
|
|
dbt deps --target $1 || exit 1
|
|
dbt seed --full-refresh --target $1 || exit 1
|
|
dbt run -x --target $1 --full-refresh || exit 1
|