forked from prospector-dev/prospector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
24 lines (24 loc) · 990 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
language: python
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install --use-mirrors nose coverage coveralls"
- "pip install git+https://github.com/landscapeio/pylint-plugin-utils.git@develop"
- "pip install git+https://github.com/landscapeio/pylint-common.git@develop"
- "pip install git+https://github.com/landscapeio/pylint-celery.git@develop"
- "pip install git+https://github.com/landscapeio/pylint-django.git@develop"
- "pip install git+https://github.com/landscapeio/requirements-detector.git@develop"
- "pip install --use-mirrors --editable ."
script:
- "nosetests -s --with-coverage --cover-inclusive --cover-package=prospector tests/"
- "mv .coverage .coverage.x"
- "pip install -e .[with_everything]"
- "coverage run --parallel-mode prospector/run.py || true"
- "coverage combine"
- "coverage report --show-missing"
after_success:
coveralls