forked from GothenburgBitFactory/bugwarrior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (35 loc) · 856 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
25
26
27
28
29
30
31
32
33
34
35
language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- sudo apt-get update -qq
- sudo apt-get install uuid-dev
- wget http://taskwarrior.org/download/task-2.4.4.tar.gz
- gunzip task-2.4.4.tar.gz
- tar xf task-2.4.4.tar
- cd task-2.4.4
- cmake .
- make
- sudo make install
- sudo apt-get install -qq pandoc
- task --version
- pip install --upgrade pip
- pip install taskw
- pip install mock
- pip install responses
- pip install PySimpleSOAP
- cd $TRAVIS_BUILD_DIR
install:
- pip install .[jira,megaplan,activecollab,bts]
- pip install codecov
- pip install coverage
script: nosetests -w tests --with-coverage --cover-branches --cover-package=bugwarrior
after_success: codecov
notifications:
email: true
irc:
- "irc.freenode.net#threebean"
on_success: change
on_failure: always