django-rest-auth/.circleci/config.yml
2020-06-20 12:57:30 -05:00

48 lines
1.2 KiB
YAML

version: 2.1
orbs:
docker: circleci/docker@0.6.0
jobs:
test-django-3: &template
docker:
- image: circleci/python:3.8.0
environment:
DJANGO_VERSION: 3.0.3
DRF: 3.11
executor: docker/docker
steps:
- checkout
- run:
command: |
cat dj_rest_auth/tests/requirements.pip dev-requirements.txt | pip install --user -r /dev/stdin
name: Install
- run:
command: pip install -q --user coveralls djangorestframework==$DRF Django==$DJANGO_VERSION
name: "Install Django + DRF Deps"
- run:
command: |
mkdir -p test-results/
coverage run --source=dj_rest_auth setup.py test
coverage report
name: Test
- run:
command: COVERALLS_REPO_TOKEN=Q58WdUuZOi89XHyDeDsGE2lxUGQ2IfqP3 coveralls
name: Coverage
- run:
command: python3 setup.py sdist
name: Build
- store_test_results:
path: test-results/
- store_artifacts:
path: dist/
test-django-2:
<<: *template
environment:
DJANGO_VERSION: 2.2.10
DRF: 3.9
workflows:
main:
jobs:
- test-django-3
- test-django-2