forked from coala/coala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
79 lines (69 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6-dev
matrix:
include:
- os: osx
osx_image: xcode6.4
language: bash
python: 3.6
env:
- DYLD_LIBRARY_PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/
cache:
directories:
- ~/Library/Caches/pip
cache: pip
addons:
apt:
packages:
- clang-3.4
sources:
- llvm-toolchain-precise
before_install:
- if [[ $TRAVIS_OS_NAME == osx ]]; then TRAVIS_PYTHON_VERSION=3.5; fi
- export TRAVIS_PYTHON_VERSION_MAJOR=${TRAVIS_PYTHON_VERSION%.[0-9]}
- export TRAVIS_PYTHON_VERSION_MINOR=${TRAVIS_PYTHON_VERSION#[0-9].}
- >
if [[ $TRAVIS_OS_NAME == osx ]]; then
brew install python3
sudo ln -sf $(which python3) $(which python)
sudo ln -sf $(which pip3) $(which pip 2>/dev/null || echo /usr/bin/pip)
fi
# https://github.com/coala/coala/issues/3183
# Travis automatically installs the `requirements.txt` in "install" stage
- cp requirements.txt requirements.orig
- cat test-requirements.txt docs-requirements.txt >> requirements.txt
- sed -i.bak '/^-r/d' requirements.txt
# OSX is not a real Travis 'python' image, so it does not install
# requirements.txt automatically.
- if [[ $TRAVIS_OS_NAME == osx ]]; then pip install -r requirements.txt; fi
before_script:
# Restore the original requirements.txt
- mv requirements.orig requirements.txt
script:
- >
if [[ $TRAVIS_PYTHON_VERSION_MINOR < 4 || $TRAVIS_PYTHON_VERSION_MAJOR == 2 ]]; then
coverage run setup.py install | grep -q 'coala supports only python 3.4 or later'
else
set -e
bash .misc/tests.sh
python setup.py bdist_wheel
pip install ./dist/coala-*.whl
pip install coala-bears[alldeps] --pre -U
# https://github.com/coala/coala-bears/issues/1037
if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger
else
sed -i.bak '/bears = GitCommitBear/d' .coafile
fi
coala --non-interactive
make -C docs clean
python setup.py docs
fi
- bash .misc/deploy.coverage.sh
notifications:
email: false