diff --git a/shell.nix b/shell.nix index ae2f15c7c80e25..c531642893b8ff 100644 --- a/shell.nix +++ b/shell.nix @@ -106,12 +106,6 @@ pkgs.mkShell { BUILD_WITH = if (ninja != null) then "ninja" else "make"; NINJA = pkgs.lib.optionalString (ninja != null) "${pkgs.lib.getExe ninja}"; - CI_SKIP_TESTS = pkgs.lib.concatStringsSep "," ( - pkgs.lib.optionals useSharedOpenSSL [ - # Path to the openssl.cnf is different from the expected one - "test-strace-openat-openssl" - ] - ); CONFIG_FLAGS = builtins.toString ( configureFlags ++ pkgs.lib.optional (useSeparateDerivationForV8 != false) "--without-bundled-v8" );