(client)
| 37 | |
| 38 | |
| 39 | def check_redis(client): |
| 40 | try: |
| 41 | client.ping() |
| 42 | except redis.ConnectionError as e: |
| 43 | raise e if CI else pytest.skip("No connection to Redis server.") from None |
| 44 | |
| 45 | |
| 46 | def check_memcached(client): |
no outgoing calls
no test coverage detected