File: .travis.yml

package info (click to toggle)
django-stronghold 0.3.0%2Bdebian-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 192 kB
  • sloc: python: 400; makefile: 136
file content (62 lines) | stat: -rw-r--r-- 1,809 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
language: python
python:
  - "2.6"
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
env:
  - DJANGO_VERSION="django>=1.4,<1.5"
  - DJANGO_VERSION="django>=1.5,<1.6"
  - DJANGO_VERSION="django>=1.6,<1.7"
  - DJANGO_VERSION="django>=1.7,<1.8"
  - 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"
matrix:
  exclude:
    - python: "2.6"
      env: DJANGO_VERSION="django>=1.7,<1.8"
    - python: "2.6"
      env: DJANGO_VERSION="django>=1.8,<1.9"
    - python: "2.6"
      env: DJANGO_VERSION="django>=1.9,<1.10"
    - python: "2.6"
      env: DJANGO_VERSION="django>=1.10,<1.11"
    - python: "2.6"
      env: DJANGO_VERSION="django>=1.11,<1.12"
    - python: "2.6"
      env: DJANGO_VERSION="django>=2.0,<2.1"
    - python: "2.7"
      env: DJANGO_VERSION="django>=2.0,<2.1"
    - python: "3.4"
      env: DJANGO_VERSION="django>=1.4,<1.5"
    - python: "3.4"
      env: DJANGO_VERSION="django>=1.5,<1.6"
    - python: "3.4"
      env: DJANGO_VERSION="django>=1.6,<1.7"
    - python: "3.4"
      env: DJANGO_VERSION="django>=1.7,<1.8"
    - python: "3.5"
      env: DJANGO_VERSION="django>=1.4,<1.5"
    - python: "3.5"
      env: DJANGO_VERSION="django>=1.5,<1.6"
    - python: "3.5"
      env: DJANGO_VERSION="django>=1.6,<1.7"
    - python: "3.5"
      env: DJANGO_VERSION="django>=1.7,<1.8"
    - python: "3.6"
      env: DJANGO_VERSION="django>=1.4,<1.5"
    - python: "3.6"
      env: DJANGO_VERSION="django>=1.5,<1.6"
    - python: "3.6"
      env: DJANGO_VERSION="django>=1.6,<1.7"
    - python: "3.6"
      env: DJANGO_VERSION="django>=1.7,<1.8"
install:
  - pip install -r requirements.txt
  - pip install $DJANGO_VERSION
  - python setup.py install
script: make test