-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (24 loc) · 781 Bytes
/
.travis.yml
File metadata and controls
24 lines (24 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
before_install:
- sudo apt-get update -qq
- wget http://ftp.sjtu.edu.cn/ubuntu/pool/universe/m/mecab/libmecab2_0.996-1.1_amd64.deb
- sudo dpkg -i libmecab2_0.996-1.1_amd64.deb
- wget http://ftp.sjtu.edu.cn/ubuntu/pool/universe/m/mecab/libmecab-dev_0.996-1.1_amd64.deb
- sudo dpkg -i libmecab-dev_0.996-1.1_amd64.deb
- wget http://ftp.sjtu.edu.cn/ubuntu/pool/universe/m/mecab/mecab-utils_0.996-1.1_amd64.deb
- sudo dpkg -i mecab-utils_0.996-1.1_amd64.deb
- sudo apt-get install -y mecab-ipadic-utf8
services:
- redis-server
language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "chmod 755 sun.cgi"
script: "python tests.py"
notifications:
email:
recipients:
- doge@0x00.be
on_success: always
on_failure: always