1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-07-06 00:49:59 +02:00
dinglehopper/.circleci/config.yml

24 lines
486 B
YAML
Raw Normal View History

2021-02-10 17:50:34 +01:00
version: 2.1
jobs:
test:
2021-02-10 17:53:50 +01:00
parameters:
python-version:
type: string
2021-02-10 17:50:34 +01:00
docker:
- image: circleci/python:<< parameters.python-version >>
steps:
- checkout
- run: pip3 install --upgrade pip
2021-02-10 17:58:58 +01:00
- run: pip3 install -r requirements.txt
- run: pip3 install pytest
2021-02-10 17:50:34 +01:00
- run: pytest
workflows:
all-tests:
jobs:
- test:
matrix:
parameters:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]