From 7f919d7098a87e1afdc27325dfd9cfa71c44621a Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Tue, 25 Mar 2014 08:50:19 -0700 Subject: tests/test_setmulti.py: Remove `unittest.main()` --- tests/test_setmulti.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_setmulti.py b/tests/test_setmulti.py index 815ccfd..3607f02 100644 --- a/tests/test_setmulti.py +++ b/tests/test_setmulti.py @@ -63,5 +63,3 @@ class test_Memcached_Set_Multi(unittest.TestCase): if DEBUG: print 'set_multi({0!r}) -> {1!r}'.format(mapping, bad_keys) - -unittest.main() -- cgit v1.2.1 From 1ab8a959a1b1d8e1a1ce59b60d20c632ffe29da2 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Tue, 25 Mar 2014 08:11:47 -0700 Subject: Add .travis.yml for Travis CI --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3a3a3f2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: + - 2.6 + - 2.7 + - pypy +install: python setup.py install +before_script: pip install nose +script: nosetests -- cgit v1.2.1 From 4686bafa699af4abfec98e011a00cc17fd1052bf Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Tue, 25 Mar 2014 10:43:24 -0700 Subject: README.md: Add Travis CI build badge --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2f29ab7..cd4a69e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +[![Build +Status](https://travis-ci.org/linsomniac/python-memcached.svg)](https://travis-ci.org/linsomniac/python-memcached) + This software is a 100% Python interface to the memcached memory cache daemon. It is the client side software which allows storing values in one or more, possibly remote, memcached servers. Search google for memcached -- cgit v1.2.1