Merge branch 'main' into wip/dev-4333-validate-data-add-video-filevalue #7087
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 | |
on: | |
push: | |
branches-ignore: | |
- refs/heads/main | |
env: | |
DSP_TOOLS_TESTING: true | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: build docs | |
run: uv run mkdocs build --strict | |
- name: check external links in docs | |
run: | | |
npm install -g markdown-link-validator | |
just check-links | |
- name: markdownlint | |
run: just markdownlint | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: Linting with ruff | |
run: just ruff-check-github | |
- name: Check formatting with ruff | |
run: just ruff-format-check | |
- name: Linting with mypy | |
run: just mypy | |
- name: Linting with darglint | |
run: just darglint | |
- name: Check formatting of YAML files | |
# Homebrew is pre-installed but not added to PATH. | |
# See https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#homebrew-note | |
run: | | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
brew install yamlfmt | |
yamlfmt -lint . | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: install dependencies | |
run: pip install yamllint | |
- name: yamllint | |
run: yamllint . | |
unittests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: unittests | |
run: just unittests --cov=dsp_tools --cov-report xml | |
- name: upload coverage report to codecov.io | |
uses: codecov/codecov-action@v4 | |
with: | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: integration-tests | |
run: just integration-tests --cov=dsp_tools --cov-report xml | |
- name: upload coverage report to codecov.io | |
uses: codecov/codecov-action@v4 | |
with: | |
flags: integration-tests | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
benchmarking: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: benchmarking | |
run: uv run pytest -s test/benchmarking/ | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: e2e-tests | |
run: just e2e-tests | |
e2e-validate-data-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: e2e-validate-data-tests | |
run: just e2e-validate-data-tests | |
legacy-e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install uv, just, and dependencies | |
uses: ./.github/actions/setup | |
- name: start stack | |
run: uv run dsp-tools start-stack --no-prune --with-test-data | |
- name: legacy e2e tests | |
run: just legacy-e2e-tests | |
- name: stop stack # see if this command can run (it isn't tested anywhere else) | |
run: uv run dsp-tools stop-stack | |
- name: make logging file available | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: logging.log | |
path: /home/runner/.dsp-tools/logging.log | |
compression-level: 0 | |
distribution: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dsp-tools repo | |
uses: actions/checkout@v4 | |
- name: Install python, pytest, uv, build & install wheel | |
uses: ./.github/actions/setup-from-wheel | |
- name: distribution tests | |
run: python -m pytest --noconftest test/distribution/ | |
# Reason for the --noconftest flag: | |
# test/conftest.py configures logging, but loguru should not be installed for the distribution tests |