-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (34 loc) · 1 KB
/
.travis.yml
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
# travis config file for a2docs
#
# travis-first-try: get django loaded, and test as "true"
#
# Tell Travis you want a Python environment to test in
language: python
sudo: false
# List the versions of Python you'd like to test against
# Taking out Python 2.5 because it's apparently not installable
python:
- "2.6"
- "2.7"
# List the versions of Django you'd like to test against
# We probably need earlier versions too, since the project
# was originally built on Django 1.2-BETA
env:
- DJANGO_VERSION=1.4.21
- DJANGO_VERSION=1.7.9
- DJANGO_VERSION=1.8.3
matrix:
exclude:
- python: "2.5"
env: "DJANGO_VERSION=1.8.3"
# Tell it the things it will need to install when it boots
install:
# Install whatever version of Django that's listed above
# Travis is currently working on
- pip install -q Django==$DJANGO_VERSION
- pip install pyflakes pep8 coverage python-coveralls
- true
# Tell Travis how to run the test script itself
# This should fail until we get some test coverage running
script:
- true