Codebase list django-stronghold / debian/latest .travis.yml
debian/latest

Tree @debian/latest (Download .tar.gz)

.travis.yml @debian/latestraw · history · blame

language: python
dist: xenial
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"
env:
  - DJANGO_VERSION="django>=1.8,<1.9"
  - DJANGO_VERSION="django>=1.9,<1.10"
  - DJANGO_VERSION="django>=1.10,<1.11"
  - DJANGO_VERSION="django>=1.11,<1.12"
  - DJANGO_VERSION="django>=2.0,<2.1"
  - DJANGO_VERSION="django>=2.1,<2.2"
  - DJANGO_VERSION="django>=2.2,<2.3"
matrix:
  exclude:
    - python: "2.7"
      env: DJANGO_VERSION="django>=2.0,<2.1"
    - python: "2.7"
      env: DJANGO_VERSION="django>=2.1,<2.2"
    - python: "2.7"
      env: DJANGO_VERSION="django>=2.2,<2.3"
    - python: "3.4"
      env: DJANGO_VERSION="django>=2.1,<2.2"
    - python: "3.4"
      env: DJANGO_VERSION="django>=2.2,<2.3"
install:
  - pip install -r requirements.txt
  - pip install $DJANGO_VERSION
  - python setup.py install
script: make test