mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
30 lines
364 B
YAML
30 lines
364 B
YAML
# Config file for automatic testing at travis-ci.org
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
language: python
|
|
|
|
python: 3.6
|
|
|
|
env:
|
|
- TOX_ENV=py36
|
|
|
|
before_install:
|
|
- docker-compose -v
|
|
- docker -v
|
|
|
|
script:
|
|
- tox -e $TOX_ENV
|
|
- sh tests/test_docker.sh
|
|
|
|
install:
|
|
- pip install tox
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|