From a38469dce1bb49c787d8a0ddc8d4b33f40b403c3 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 1 Jul 2026 07:16:06 +0000 Subject: [PATCH] python3Packages.mace-torch: set CI env variable to skip intensive tests --- pkgs/development/python-modules/mace-torch/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/mace-torch/default.nix b/pkgs/development/python-modules/mace-torch/default.nix index 4ed39d479782..10f928d168f8 100644 --- a/pkgs/development/python-modules/mace-torch/default.nix +++ b/pkgs/development/python-modules/mace-torch/default.nix @@ -50,6 +50,11 @@ buildPythonPackage (finalAttrs: { setuptools ]; + env = { + # Skip the most intensive tests + CI = true; + }; + pythonRelaxDeps = [ "e3nn" ];