1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-06-09 19:59:57 +02:00
modstool/.circleci/config.yml

24 lines
488 B
YAML
Raw Normal View History

version: 2.1
jobs:
test:
parameters:
python-version:
type: string
docker:
- image: cimg/python:<< parameters.python-version >>
steps:
- checkout
- run: pip3 install --upgrade pip
2024-07-25 13:26:12 +02:00
- run: pip3 install -e .
- run: pip3 install -r requirements-test.txt
- run: pytest
workflows:
all-tests:
jobs:
- test:
matrix:
parameters:
2024-07-29 07:02:59 +02:00
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]