@ -0,0 +1,26 @@
version: 2.1
orbs:
python: circleci/python@3.6.4
jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/load-cache
- python/install-deps
- run:
command: |
sudo pip install pipenv
pipenv install
- python/save-cache
- run :
pipenv run python manage.py test
workflows:
main:
- build-and-test