WIP: Use Uv for managing packages and Ruff for code formatter. #1349
Workflow file for this run
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: | |
branches: [ development, master ] | |
paths-ignore: | |
- 'doc/**' | |
- 'src/pretix/locale/**' | |
pull_request: | |
branches: [ development, master ] | |
paths-ignore: | |
- 'doc/**' | |
- 'src/pretix/locale/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Tests | |
strategy: | |
matrix: | |
python-version: [3.11] | |
database: [sqlite, postgres] | |
exclude: | |
- database: sqlite | |
python-version: 3.11 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: harmon758/postgresql-action@v1 | |
with: | |
postgresql version: '16' | |
postgresql db: 'pretix' | |
postgresql user: 'postgres' | |
postgresql password: 'postgres' | |
if: matrix.database == 'postgres' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system dependencies | |
run: sudo apt update && sudo apt install gettext | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
enable-cache: true | |
- name: Install Python dependencies | |
run: uv sync --all-extras --group test | |
- name: Run checks | |
run: uv run python manage.py check | |
working-directory: ./src | |
- name: Install JS dependencies | |
working-directory: ./src | |
run: make npminstall | |
- name: Compile | |
working-directory: ./src | |
run: uv run make all compress | |
- name: Run tests | |
working-directory: ./src | |
run: PRETIX_CONFIG_FILE=tests/travis_${{ matrix.database }}.cfg uv run pytest -n 3 -p no:sugar --cov=./ --cov-report=xml --reruns 3 tests --maxfail=100 | |
- name: Upload coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
file: src/coverage.xml | |
fail_ci_if_error: true | |
if: matrix.database == 'postgres' && matrix.python-version == '3.11' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/master') |