You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
486 B
YAML
24 lines
486 B
YAML
4 years ago
|
version: 2.1
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
parameters:
|
||
|
python-version:
|
||
|
type: string
|
||
|
docker:
|
||
|
- image: circleci/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.5", "3.6", "3.7", "3.8", "3.9"]
|