17 lines
203 B
YAML
17 lines
203 B
YAML
image: python:latest
|
|
|
|
services:
|
|
- mysql:latest
|
|
- postgres:latest
|
|
|
|
cache:
|
|
paths:
|
|
- ~/.cache/pip/
|
|
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
|
|
test:
|
|
script:
|
|
- python manage.py test
|