2017-04-10 07:35:22 +00:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.5"
|
|
|
|
- "3.6"
|
2017-04-10 07:48:09 +00:00
|
|
|
|
|
|
|
env:
|
2017-06-29 14:34:40 +00:00
|
|
|
# Set a dummy secret key
|
2017-04-10 07:48:09 +00:00
|
|
|
- DJANGO_SECRET_KEY=0
|
2017-04-10 07:35:22 +00:00
|
|
|
# install dependencies
|
|
|
|
install: "pip install -r requirements.txt"
|
2017-06-29 14:34:40 +00:00
|
|
|
script:
|
|
|
|
- flake8
|
|
|
|
- python manage.py test
|