Update config.yml

Circleci doesn't provide RC images, so lets try the official python one
master
Lorenz Diener 2025-06-18 15:00:34 +03:00 zatwierdzone przez GitHub
rodzic 1e0afc7820
commit 98f0c2258c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 14 dodań i 6 usunięć

Wyświetl plik

@ -112,15 +112,23 @@ jobs:
path: tests path: tests
run-tests-314: run-tests-314:
docker: docker:
- image: cimg/python:3.14 - image: python:3.14-rc-bookworm
steps: steps:
- checkout - checkout
- run: - run:
name: "Install test deps" name: Install system dependencies (if needed)
command: "pip install .[test,webpush,blurhash]" command: |
apt-get update && apt-get install -y \
git curl build-essential libffi-dev
- run: - run:
name: "Run tests" name: Upgrade pip and install test deps
command: "pytest --junitxml=tests/result.xml" command: |
python -m pip install --upgrade pip
pip install .[test,webpush,blurhash]
- run:
name: Run tests
command: |
pytest --junitxml=tests/result.xml
- store_test_results: - store_test_results:
path: tests path: tests
workflows: workflows: