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