Skip to content

Commit 07d930a

Browse files
committed
travis-ci: initial setup
1 parent c9f2929 commit 07d930a

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.pyc
22
.DS_Store
3+
.coverage

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.2"
6+
# command to install dependencies
7+
install:
8+
- sudo apt-get update -qq
9+
- python setup.py build
10+
- sudo pip install pyyaml
11+
- sudo apt-get install -qq git mercurial subversion
12+
# command to run tests
13+
script:
14+
- which python
15+
- /usr/bin/env python --version
16+
- nosetests --with-coverage --cover-package vcstools
17+
notifications:
18+
email: false

0 commit comments

Comments
 (0)