New comment by StaticVoidMoon on void-packages repository https://github.com/void-linux/void-packages/pull/39730#issuecomment-1268351886 Comment: Hi. Based on my understanding and after digging around, I found that in the check phase it will try to connect to redis for testing as copied below. ``` => python3-redis-4.3.4_1: running do_check ... INTERNALERROR> Traceback (most recent call last): INTERNALERROR> File "/builddir/redis-4.3.4/redis/connection.py", line 611, in connect INTERNALERROR> sock = self.retry.call_with_retry( INTERNALERROR> File "/builddir/redis-4.3.4/redis/retry.py", line 46, in call_with_retry INTERNALERROR> return do() INTERNALERROR> File "/builddir/redis-4.3.4/redis/connection.py", line 612, in INTERNALERROR> lambda: self._connect(), lambda error: self.disconnect(error) INTERNALERROR> File "/builddir/redis-4.3.4/redis/connection.py", line 677, in _connect INTERNALERROR> raise err INTERNALERROR> File "/builddir/redis-4.3.4/redis/connection.py", line 665, in _connect INTERNALERROR> sock.connect(socket_address) INTERNALERROR> ConnectionRefusedError: [Errno 111] Connection refused ``` In this case, should I try to add redis as a `checkdepend` or should I just set `make_check=no`. Sorry for the trouble.