Skip to content

Commit

Permalink
Add coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
fhahn committed Jul 8, 2013
1 parent a1e8164 commit 62c1e2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
# command to install dependencies
install:
#- pip install . --use-mirrors
- pip install pytest-cov python-coveralls
- pip install -r requirements.txt --use-mirrors
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2
- tar -xf `pwd`/../pypy.tar.bz2 -C `pwd`/../
Expand All @@ -17,4 +18,7 @@ script:
- export PYTHONPATH=$PYTONPATH:`python -c "import glob; import os; print os.path.abspath(glob.glob('../pypy-pypy*')[0])"`
- export PATH=$PATH:`pwd`/lua/
- python translate.py
- py.test
- py.test --cov luna

after_success:
- coveralls
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Luna
=====

[![Build Status](https://travis-ci.org/fhahn/luna.png?branch=master)](https://travis-ci.org/fhahn/luna)
[![Coverage Status](https://coveralls.io/repos/fhahn/luna/badge.png)](https://coveralls.io/r/fhahn/luna)


Luna is a bytecode register interpreter for Lua. At the moment it uses Luajit to compile Lua files to bytecode
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# testing requirement
pytest

0 comments on commit 62c1e2f

Please sign in to comment.