summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* automatic message decoding if decode_responses=True. bugfixes, tests.Andy McCurdy2014-04-011-32/+222
|
* DEBUG LOADING was released in 2.8.8, so skip test with earlier versionsAndy McCurdy2014-03-311-2/+1
|
* make sure we know the order of expected subscribe/unsubscribe messagesAndy McCurdy2014-03-294-17/+24
|
* fixes PubSub.subscribe once and for all.Andy McCurdy2014-03-282-51/+122
|
* fixed a bunch get_message() bugs, refactored the PythonParser to be saner.Andy McCurdy2014-03-271-75/+116
| | | | still need more pubsub tests but all this stuff *seems* to be working now
* make sure hiredis parser raises connection errorsAndy McCurdy2014-03-102-8/+18
|
* with tox/travis, tests don't need to know about the environmentAndy McCurdy2014-01-281-14/+4
|
* Add extra info to exceptions raised in pipelines. Fixes #407Andy McCurdy2013-12-081-4/+28
| | | | | | | | | ResponseErrors generated by commands executed in a pipeline now includes the command position in the pipeline and the actual command sent to the Redis server. For example: Command # 3 (LPUSH c 3) of pipeline caused error: <actual error message from Redis server>
* some *SCAN cleanupAndy McCurdy2013-12-031-11/+11
|
* add 2.8.0 new methods: scan/sscan/hscan/zscanjingchao2013-11-271-0/+39
|
* Move repr to Connection and UnixDomainConnection. Add repr support to Redis, ↵Mark Roberts2013-11-051-7/+52
| | | | ConnectionPool, and BlockingConnectionPool
* Add support for showing db connection info via reprMark Roberts2013-11-011-0/+6
|
* Merge branch 'vitek-sentinel'Andy McCurdy2013-09-131-0/+173
|\ | | | | | | | | Conflicts: CHANGES
| * comments and changelogAndy McCurdy2013-09-131-1/+1
| |
| * Add tests for sentinel moduleVitja Makarov2013-09-071-0/+173
| |
* | Errors during auth or DB select now close the socketAndy McCurdy2013-09-081-0/+17
|/ | | | Fixes #368
* Simplify dump and restore test case - works with Python 3.x now.Justin Head2013-07-181-4/+3
|
* Add dump and restore test case.Justin Head2013-07-181-0/+9
|
* encoding fixandy2013-06-071-1/+1
|
* python 2.5 supportandy2013-06-071-0/+1
|
* pubsub testsandy2013-06-063-124/+98
|
* encoding testsandy2013-06-063-71/+40
|
* locking tests in pytestandy2013-06-062-71/+61
|
* python 2.5 compatandy2013-06-052-0/+2
|
* pipeline tests converted to pytestandy2013-06-042-202/+202
|
* connection pool testsandy2013-06-041-32/+21
|
* bad merge conflictandy2013-06-041-1850/+0
|
* Merge branch 'master' into pytestandy2013-06-042-0/+1856
|\ | | | | | | | | Conflicts: tests/server_commands.py
| * pep8andy2013-06-041-1/+2
| |
| * Add CONFIG RESETSTAT support.Yossi Gottlieb2013-06-041-0/+6
| |
* | pytest config fileandy2013-06-041-0/+26
| |
* | pytest framework and server commandsandy2013-06-043-1874/+1227
|/
* use iterators for dict traversal in both python 2 and 3andy2013-05-231-6/+6
|
* DEL, HDEL, ZREM commands now return number of keys deleted. fixed #243andy2013-05-011-6/+25
|
* tests should pass on older redis versionsandy2013-04-271-0/+35
|
* travis runs 2.6.12, great.andy2013-04-271-10/+0
|
* testing redis version on travisandy2013-04-271-0/+10
|
* finer grain testsandy2013-04-271-5/+7
|
* Implement extended set options added in Redis 2.6.12.george yoshida2013-04-271-2/+2
| | | | - fix wording/formatting
* Implement extended set options added in Redis 2.6.12.george yoshida2013-04-271-0/+36
| | | | | | SPECS : - http://redis.io/commands/set - https://github.com/antirez/redis/issues/931
* pep8andy2013-04-221-12/+10
|
* Merge branch 'mapleoin-master'andy2013-04-221-0/+49
|\
| * Merge branch 'master' of git://github.com/mapleoin/redis-py into mapleoin-masterandy2013-04-221-0/+49
| |\ | | | | | | | | | | | | Conflicts: redis/client.py
| | * add an optional argument to sort to make it return tuplesIonuț Arțăriși2011-10-101-0/+44
| | |
* | | Merge pull request #338 from stephan-hof/corrupted_pipeline_socketAndy McCurdy2013-04-221-0/+15
|\ \ \ | | | | | | | | socket gets corrupted if errors in pipeline happen
| * | | Add python3 and python2.5 compatibilityhofmockel2013-04-191-1/+1
| | | |
| * | | Read all command responses of a pipelinehofmockel2013-04-171-0/+15
| | | | | | | | | | | | | | | | | | | | Otherwise a error makes the responses stuck in the socket. Which leads to wrong responses for the following commands
* | | | Merge pull request #327 from pabelanger/pep8Andy McCurdy2013-04-223-2/+8
|\ \ \ \ | |_|/ / |/| | | Format code per pep8 guidelines
| * | | Format code per pep8 guidelinesPaul Belanger2013-03-303-2/+8
| |/ / | | | | | | | | | | | | | | | A simple patch to enable pep8 in tox and format our code properly. Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
* | | Merge pull request #340 from thruflo/masterAndy McCurdy2013-04-222-0/+78
|\ \ \ | | | | | | | | Add optional `redis.connection.BlockingConnectionPool` class.