mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
32 lines
488 B
YAML
32 lines
488 B
YAML
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
language: python
|
|
|
|
python: 3.6
|
|
|
|
before_install:
|
|
- docker-compose -v
|
|
- docker -v
|
|
|
|
matrix:
|
|
include:
|
|
- name: Tox Test
|
|
script: tox -e py36
|
|
- name: Black template
|
|
script: tox -e black
|
|
- name: Basic Docker
|
|
script: sh tests/test_docker.sh
|
|
- name: Docker with Celery
|
|
script: sh tests/test_docker.sh use_celery=y
|
|
|
|
install:
|
|
- pip install tox
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|