Skip to content

[FAQ Bot] NEW: How do I add the dlt MCP server in VS Code? #11

[FAQ Bot] NEW: How do I add the dlt MCP server in VS Code?

[FAQ Bot] NEW: How do I add the dlt MCP server in VS Code? #11

Workflow file for this run

name: Test Website
on:
push:
branches: [ main ]
paths:
- 'website/**'
- '_questions/**'
pull_request:
branches: [ main ]
paths:
- 'website/**'
- '_questions/**'
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- uses: astral-sh/setup-uv@v4
- name: Install dependencies
working-directory: ./website
run: uv sync --dev
- name: Run unit tests
working-directory: ./website
run: uv run pytest tests/ -v
integration-tests:
needs: unit-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- uses: astral-sh/setup-uv@v4
- name: Install dependencies
working-directory: ./website
run: uv sync --dev
- name: Run integration tests
working-directory: ./website
run: uv run pytest tests_integration/ -v