Files
web2.0-backend/.gitlab-ci.yml
T
2017-03-06 02:01:47 +02:00

13 lines
344 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 web find . -path '*/migrations*' -delete
- docker-compose exec web find . -type f -name '*.pyc' -delete
when: on_success
only:
- develop