mirror of
https://github.com/dlt-hub/dlt.git
synced 2025-12-17 19:31:30 +00:00
* answers defaults in cli if tty disconnected * adds method to send anon tracker event even if disabled * fixes types in source/resource build in generator * adds dlt.hub with transformation decorator * moves dlt-plus to separate sidebar in docs, renames to dltHub Features, adds EULA * renamed plus to hub in docs * fixes docs logos * removes more dlt+ * renames plus tests * fixes ci run main * fixes hub workflows
85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
name: hub | dlthub features
|
|
|
|
#
|
|
# dlt-plus smoke tests against the nightly build.
|
|
#
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
RUNTIME__LOG_LEVEL: ERROR
|
|
|
|
jobs:
|
|
run_hub_features:
|
|
name: test
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
plus_dep: ["dlt-plus", "https://dlt-packages.fra1.digitaloceanspaces.com/dlt-plus/dlt_plus-0.0.0+nightly-py3-none-any.whl"]
|
|
# Test all python versions on ubuntu only
|
|
exclude:
|
|
- os: "macos-latest"
|
|
python-version: "3.11"
|
|
- os: "macos-latest"
|
|
python-version: "3.12"
|
|
- os: "windows-latest"
|
|
python-version: "3.11"
|
|
- os: "windows-latest"
|
|
python-version: "3.12"
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@master
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
activate-environment: true
|
|
enable-cache: true
|
|
|
|
# NOTE: needed for mssql source tests in plus
|
|
- name: Install ODBC driver for SQL Server
|
|
run: |
|
|
sudo ACCEPT_EULA=Y apt-get install --yes msodbcsql18
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
- name: Install all dependencies
|
|
run: make dev
|
|
|
|
- name: Install dlt-plus nightly devel build without cache
|
|
run: uv run pip install --upgrade --force-reinstall --no-cache-dir ${{ matrix.plus_dep }}
|
|
|
|
- name: Run tests
|
|
run: pytest tests/hub
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
- name: Run tests on mac on win without mssql driver
|
|
run: pytest tests/hub -m "not mssql"
|
|
if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'
|
|
|
|
matrix_job_required_check:
|
|
name: hub | dlthub features tests
|
|
needs: run_hub_features
|
|
runs-on: ubuntu-latest
|
|
if: always()
|
|
steps:
|
|
- name: Check matrix job results
|
|
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
|
|
run: |
|
|
echo "One or more matrix job tests failed or were cancelled. You may need to re-run them." && exit 1
|