You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
445 B
26 lines
445 B
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 :
|
|
command: |
|
|
pipenv run python manage.py test
|
|
|
|
|
|
workflows:
|
|
main:
|
|
jobs:
|
|
- build-and-test
|