10 lines
248 B
YAML
10 lines
248 B
YAML
image: python:3.5
|
|
|
|
all_tests:
|
|
script:
|
|
- sh ./scripts/autoinstall.sh
|
|
- docker-compose run web python manage.py test
|
|
after_script:
|
|
- docker-compose exec -T web find . -type f -name '*.pyc' -delete
|
|
when: on_success
|