Skip to content

Commit

Permalink
Merge ea66f3d into 798d440
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthv committed Jun 5, 2014
2 parents 798d440 + ea66f3d commit dbe265c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .noserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[nosetests]
verbosity=3
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: python
python:
- "2.6"
# command to install dependencies
install:
- "pip install -r requirements.txt --use-mirrors"
# command to run tests
script:
- "pylint --version"
- "PYTHONPATH=./snapwatchd:./drivers pylint --rcfile=tests/pylintrc ./drivers/*.py"
- "cd drivers; nosetests --with-coverage -c ../.noserc ../tests/test_*.py"
after_success:
coveralls
branches:
except:
- xs64bit
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Storage Manager for XenServer
=============================
[![Build Status](https://travis-ci.org/xapi-project/sm.svg?branch=master)](https://travis-ci.org/xapi-project/sm)
[![Coverage Status](https://coveralls.io/repos/xapi-project/sm/badge.png?branch=master)](https://coveralls.io/r/xapi-project/sm?branch=master)

This repository contains the code which forms the Storage Management layer for XenSever. It consists of a series of "plug-ins" to xapi (the Xen management layer) which are written primarily in python.

Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
mock
xenapi
coveralls
pylint

0 comments on commit dbe265c

Please sign in to comment.