Skip to content

removed code duplication in the webgpu __main__ demo #131

removed code duplication in the webgpu __main__ demo

removed code duplication in the webgpu __main__ demo #131

Workflow file for this run

name: UV Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: UV tests
runs-on: ${{ matrix.os }}
env:
QT_QPA_PLATFORM: offscreen
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest -p no:pytest-qt tests --ignore=tests/test_shaderlib.py --ignore=tests/test_texture.py --ignore=tests/test_text.py --ignore=tests/test_base_mesh.py --ignore=tests/test_primitives.py --ignore=tests/test_obj.py --ignore=tests/test_vao.py --ignore=tests/test_lookat_widget.py --ignore=tests/test_transform_widget.py --ignore=tests/test_vec4_widget.py --ignore=tests/test_rgb_colour_widget.py --ignore=tests/test_vec2_widget.py --ignore=tests/test_rgba_colour_widget.py --ignore=tests/test_webgpu_widget.py --ignore=tests/test_vec3_widget.py --ignore=tests/test_webgpu_constants.py --ignore=tests/test_webgpu_pipelines.py --ignore=tests/test_webgpu_widget.py