From d4ba41bd43997f16d663b6503752f38e53c29637 Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Mon, 16 Mar 2026 20:34:22 +0500 Subject: [PATCH] nix(shell): bypass proxy variables using NO_PROXY=* Tested using: ```sh export HTTP_PROXY=http://localhost:7890 nix-shell postgrest-test-io ``` Closes #4633. Signed-off-by: Taimoor Zaeem --- shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell.nix b/shell.nix index 48406f283..fa153ae83 100644 --- a/shell.nix +++ b/shell.nix @@ -47,6 +47,10 @@ lib.overrideDerivation postgrest.env ( '' export HISTFILE=.history + # Bypass proxy for all hosts, it prevents HTTP client failures used in test + # suites. See: https://github.com/PostgREST/postgrest/issues/4633 for more info + export NO_PROXY=* + source ${pkgs.bash-completion}/etc/profile.d/bash_completion.sh source ${pkgs.git}/share/git/contrib/completion/git-completion.bash source ${postgrest.hsie.bash-completion}