2020-10-23 08:57:57 +00:00
|
|
|
version: 2.1
|
|
|
|
|
|
|
|
orbs:
|
|
|
|
python: circleci/python@0.2.1
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-test:
|
|
|
|
executor: python/default
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- python/load-cache
|
|
|
|
- python/install-deps
|
|
|
|
- python/save-cache
|
|
|
|
- run:
|
2020-10-23 12:00:41 +00:00
|
|
|
command: |
|
2020-10-23 12:13:53 +00:00
|
|
|
python3 --version
|
2020-10-23 12:00:41 +00:00
|
|
|
pipenv install
|
|
|
|
pipenv run pytest
|
2020-10-23 08:57:57 +00:00
|
|
|
workflows:
|
|
|
|
main:
|
|
|
|
jobs:
|
|
|
|
- build-and-test
|
|
|
|
|