feat: Unit tests for dbt models #286
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check documentation coverage | |
name: dbt Tests & Coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
DBT_PROFILES_DIR: ./.github/ | |
CLICKHOUSE_DB: "xapi" | |
CLICKHOUSE_USER: "ch_admin" | |
CLICKHOUSE_PASSWORD: "ch_password" | |
TUTOR_ROOT: ./.ci/ | |
jobs: | |
build: | |
name: Check coverage & run tests | |
runs-on: ubuntu-latest | |
permissions: | |
contents: "read" | |
id-token: "write" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11.x" | |
- name: Install dependencies | |
run: | | |
pip install tutor-contrib-aspects | |
pip install -r requirements.txt | |
dbt deps | |
- name: Initialize Open edX | |
continue-on-error: false | |
run: | | |
tutor plugins enable aspects | |
tutor config save | |
tutor local start ralph -d | |
tutor local do init-clickhouse | |
tutor local do alembic -c "upgrade head" | |
tutor local do dbt | |
tutor local do load-xapi-test-data | |
- name: Check dbt tests | |
run: | | |
mv unit-test-seeds ci-seeds | |
mv unit-test-models ci-models | |
dbt seed --full-refresh | |
dbt run --full-refresh | |
dbt test | |
- name: Check docs coverage | |
run: | | |
dbt docs generate | |
dbt-coverage compute doc --cov-fail-under 1.0 --model-path-filter models/ | |
mv ci-seeds unit-test-seeds | |
mv ci-models unit-test-models |