Update config.yml

update ci config, run on 3.12, try to run coverage on 3.12
master
Lorenz Diener 2024-02-11 13:11:03 +02:00 zatwierdzone przez GitHub
rodzic cd86887d88
commit dc24df67e6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 37 dodań i 9 usunięć

Wyświetl plik

@ -26,7 +26,7 @@ jobs:
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
run-tests-38-cov:
run-tests-38:
docker:
- image: cimg/python:3.8
steps:
@ -34,17 +34,11 @@ jobs:
- run:
name: "Install test deps"
command: "pip install .[test,webpush,blurhash]"
- run:
name: "Install codecov"
command: "pip install codecov"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
- run:
name: "Notify codecov"
command: "codecov"
run-tests-39:
docker:
- image: cimg/python:3.9
@ -70,12 +64,46 @@ jobs:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
path: tests
run-tests-311:
docker:
- image: cimg/python:3.11
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test,webpush,blurhash]"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
run-tests-312-cov:
docker:
- image: cimg/python:3.12
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test,webpush,blurhash]"
- run:
name: "Install codecov"
command: "pip install codecov"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
- run:
name: "Notify codecov"
command: "codecov"
workflows:
run-tests-workflow:
jobs:
#- run-tests-36 # 3.6 commented out - SHOULD still work, if you can build cryptography, or don't use it
- run-tests-37
- run-tests-38-cov
- run-tests-38
- run-tests-39
- run-tests-310
- run-tests-311
- run-tests-312-cov