選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.travis.yml 341 B

123456789101112
  1. language: python
  2. python:
  3. - 3.4
  4. - 3.5
  5. addons:
  6. postgresql: "9.4"
  7. services:
  8. - postgresql
  9. env:
  10. - DATABASE_ENGINE=django.db.backends.postgresql_psycopg2 DATABASE_NAME=postgres DATABASE_USER=postgres DATABASE_PASSWORD= DATABASE_HOST=localhost DATABASE_PORT=5432
  11. install: pip install -r requirements.txt
  12. script: python manage.py test