Spirit/.travis.yml

29 lines
559 B
YAML
Raw Normal View History

2014-05-09 21:34:48 +00:00
language: python
2015-09-06 15:23:44 +00:00
# Use container-based infrastructure
sudo: false
2014-05-09 21:34:48 +00:00
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO=1.8.18
- DJANGO=1.9.13
- DJANGO=1.10.8
2018-01-30 13:11:23 +00:00
- DJANGO=1.11.9
2014-05-09 21:34:48 +00:00
install:
2015-11-13 13:56:09 +00:00
- pip install --upgrade pip
2018-01-30 13:11:23 +00:00
- pip install .[files]
- pip uninstall django-spirit -y
- pip install -q Django==$DJANGO
2015-03-27 02:29:48 +00:00
- pip install coveralls pep8==1.5.7 flake8
2014-05-09 21:34:48 +00:00
script:
2014-12-14 21:09:07 +00:00
- flake8 --exit-zero
- python setup.py build
- python ./spirit/extra/bin/spirit.py startproject project
- coverage run --source=. runtests.py
2014-05-09 22:59:46 +00:00
after_success:
- coveralls