Files
python-utils/.gitea/workflows/test.yml
T
Brian Bjarke Jensen cb036da997
Code Quality Pipeline / Setup Python and UV dependencies (pull_request) Successful in 17s
Code Quality Pipeline / code-quality (pull_request) Failing after 4s
Test Python Package / Setup Python and UV dependencies (pull_request) Successful in 18s
Test Python Package / test (pull_request) Failing after 3s
Type Check / Setup Python and UV dependencies (pull_request) Successful in 17s
Type Check / type-check (pull_request) Failing after 4s
fixed using reusable workflows
2025-08-28 20:25:21 +02:00

23 lines
414 B
YAML

name: Test Python Package
on:
push:
branches:
- main
pull_request:
jobs:
setup-python-uv-dependencies:
name: Setup Python and UV dependencies
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
with:
python-version: ${{ vars.PYTHON_VERSION }}
test:
runs-on: ubuntu-latest
steps:
- name: Run pytest
env:
PYTHONPATH: .
run: pytest