24 lines
472 B
YAML
24 lines
472 B
YAML
language: python
|
|
python:
|
|
- "2.5"
|
|
- "2.6"
|
|
- "2.7"
|
|
before_install:
|
|
- export PIP_USE_MIRRORS=true
|
|
- export PIP_INDEX_URL=https://simple.crate.io/
|
|
- sudo apt-get update
|
|
- sudo apt-get install csstidy libxml2-dev libxslt-dev
|
|
install:
|
|
- pip install -e .
|
|
- pip install -r requirements/tests.txt Django==$DJANGO
|
|
script:
|
|
- make test
|
|
env:
|
|
- DJANGO=1.3.1
|
|
- DJANGO=1.4
|
|
branches:
|
|
only:
|
|
- develop
|
|
notifications:
|
|
irc: "irc.freenode.org#django-compressor"
|