-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (36 loc) · 784 Bytes
/
.travis.yml
File metadata and controls
36 lines (36 loc) · 784 Bytes
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
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION=1.11.16
- DJANGO_VERSION=2.0.9
- DJANGO_VERSION=2.1
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
env: DJANGO_VERSION=2.0.9
- python: "3.7"
dist: xenial
sudo: true
env: DJANGO_VERSION=2.1
exclude:
- python: "3.7"
env: DJANGO_VERSION=1.11.16
- python: "2.7"
env: DJANGO_VERSION=2.0.9
- python: "2.7"
env: DJANGO_VERSION=2.1
- python: "3.4"
env: DJANGO_VERSION=2.1
before_install:
- export DJANGO_SETTINGS_MODULE="pygmentify.tests.settings"
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
script:
- django-admin test pygmentify.tests