Overwriting rendered column descriptions with the unrendered yaml #82
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
name: Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
tests: | |
name: Run pytest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Upgrade pip | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip --version | |
- name: Install Poetry | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt poetry | |
poetry --version | |
- name: Install required packages | |
run: | # install duckdb extras to be able to parse manifest | |
poetry install -E duckdb | |
- name: Parse manifest | |
run: | | |
poetry run dbt parse --project-dir demo_duckdb --profiles-dir demo_duckdb -t test | |
- name: Run pytest | |
run: | | |
poetry run python -m pytest |