We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f2929 commit 07d930aCopy full SHA for 07d930a
.gitignore
@@ -1,2 +1,3 @@
1
*.pyc
2
.DS_Store
3
+.coverage
.travis.yml
@@ -0,0 +1,18 @@
+language: python
+python:
+ - "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