forked from coala/coala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
58 lines (52 loc) · 1.52 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
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6-dev
cache: pip
addons:
apt:
packages:
- r-base
- clang-3.4
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
before_install:
- export TRAVIS_PYTHON_VERSION_MAJOR=${TRAVIS_PYTHON_VERSION%.[0-9]}
- export TRAVIS_PYTHON_VERSION_MINOR=${TRAVIS_PYTHON_VERSION#[0-9].}
- sudo add-apt-repository -y ppa:staticfloat/juliareleases
- sudo apt-get update
- sudo apt-get install julia
# https://github.com/coala/coala/issues/3183
# https://github.com/coala/coala/issues/3184
- pip install -U py==1.4.29 pip
- cat test-requirements.txt docs-requirements.txt >> requirements.txt
- sed -i '/^-r/d' requirements.txt
before_script:
- julia -e 'Pkg.add("Lint")'
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 --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 '/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