Skip to content

Commit 7bd0110

Browse files
committed
Add Travis-CI support.
1 parent 36678d3 commit 7bd0110

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
6+
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
7+
install:
8+
- pip install flake8
9+
- pip install coverage
10+
11+
# command to run tests, e.g. python setup.py test
12+
script:
13+
- "flake8 --ignore=W191,E101 --max-complexity=10 **/**.py"
14+
- cd tests
15+
- nosetests --with-coverage .

README.org

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
* Vim-OrgMode
2+
3+
Build status:
4+
https://secure.travis-ci.org/sotte/vim-orgmode.png?branch=master
5+
26
Text outlining and task management for Vim based on Emacs' Org-Mode
37
([[http://orgmode.org/]]).
48

0 commit comments

Comments
 (0)