Files
web2.0-backend/.gitlab-ci.yml
T
2017-04-06 18:18:54 +03:00

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