Skip to content

Commit

Permalink
Add automated testing with travisci
Browse files Browse the repository at this point in the history
  • Loading branch information
Osso committed Sep 14, 2014
1 parent 5c862c4 commit 744e80f
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
##
## This file is part of Invenio.
## Copyright (C) 2013, 2014 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

language: python
python:
- "2.6"

before_install:
- sudo apt-get -qqy update

install:
- pip install hg+https://bitbucket.org/fdik/pypeg@2.15.0
- pip install nose
- pip install tox

script:
- tox

0 comments on commit 744e80f

Please sign in to comment.