forked from open-craft/django-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (30 loc) · 935 Bytes
/
.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
language: python
python:
- "2.6"
- "2.7"
# Python 3.2 support removed as South migrations wont run
# - "3.2"
- "3.3"
env:
# Django 1.4 support is dumped because of introduction of python3 support
# - DJANGO="Django>=1.4,<1.5"
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.6,<1.7"
# - DJANGO="Django>=1.7,<1.8"
install:
- pip install $DJANGO -r requirements.txt
matrix:
exclude:
# Invalid example left to fill in the exclude block.
- python: "2.0"
env: DJANGO="Django>=2000.0"
# Python 3.2, migrations are broken with South so we should take care not to include
# it when adding 1.7 support
#- python: "3.2"
# env: DJANGO="Django>=1.7"
# command to run tests
script:
- cd testproject ; python -W error:"":"":0 manage.py test wiki --settings=testproject.settings.travis --traceback
notifications:
irc:
- "irc.freenode.org#django-wiki"