kopia lustrzana https://github.com/halcy/Mastodon.py
Update config.yml
Circleci doesn't provide RC images, so lets try the official python onemaster
rodzic
1e0afc7820
commit
98f0c2258c
|
@ -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:
|
||||||
|
|
Ładowanie…
Reference in New Issue