1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-07-15 21:39:54 +02:00
modstool/.circleci/config.yml

24 lines
477 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
- run: pip3 install -r requirements.txt
- run: pip3 install pytest
- run: pytest
workflows:
all-tests:
jobs:
- test:
matrix:
parameters:
python-version: ["3.8", "3.9", "3.10", "3.11"]