File size: 1,819 Bytes
03c4799 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | ---
version: 2.1
executors:
python:
docker:
- image: cimg/python:3.9
jobs:
flake8_lint:
executor: python
steps:
- checkout
- run: pip install tox
- run: tox -e flake8
isort_lint:
executor: python
steps:
- checkout
- run: pip install tox
- run: tox -e isort
test:
parameters:
python:
type: string
docker:
- image: circleci/python:<< parameters.python >>
environment:
TOXENV: "py<< parameters.python >>"
steps:
- checkout
- run: echo 'export PATH=$HOME/.local/bin:$PATH' >> $BASH_ENV
- run: pip install --user tox
- run: tox
test_nooptionals:
parameters:
python:
type: string
docker:
- image: cimg/python:<< parameters.python >>
environment:
TOXENV: "py<< parameters.python >>-nooptionals"
steps:
- checkout
- run: pip install tox
- run: tox
test_pypy:
parameters:
python:
type: string
docker:
- image: pypy:<< parameters.python >>
environment:
TOXENV: "pypy<< parameters.python >>"
steps:
- checkout
- run: pip install tox
- run: tox
workflows:
version: 2
client_python:
jobs:
- flake8_lint
- isort_lint
- test:
matrix:
parameters:
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- test_nooptionals:
matrix:
parameters:
python:
- "2.7"
- "3.9"
- test_pypy:
matrix:
parameters:
python:
- "2.7"
- "3.7"
|