Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

.travis.yml 359 B

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