Skip to content

Commit

Permalink
Adding travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Lecocq committed Aug 5, 2013
1 parent d44b9ee commit 0223abd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .travis.yml
@@ -0,0 +1,10 @@
services:
- redis-server
language: python
python:
- 2.6
- 2.7
- pypy
install:
- pip install redis --use-mirrors
script: make test
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -16,7 +16,7 @@ qless.lua: qless-lib.lua api.lua
clean:
rm -f qless.lua qless-lib.lua

nose:
nose: qless.lua
nosetests --exe -v

test: nose qless.lua
2 changes: 2 additions & 0 deletions README.md
@@ -1,5 +1,7 @@
Qless Core
==========
[![Build Status](https://travis-ci.org/seomoz/qless-core.png)](https://travis-ci.org/seomoz/qless-core)

This is the set of all the lua scripts that comprise the qless library. We've
begun migrating away from the system of having one lua script per command to
a more object-oriented approach where all code is contained in a single unified
Expand Down
1 change: 1 addition & 0 deletions qless.py
Expand Up @@ -5,6 +5,7 @@
import simplejson as json
except ImportError:
import json
json.JSONDecodeError = ValueError


class QlessRecorder(object):
Expand Down

0 comments on commit 0223abd

Please sign in to comment.