python3Packages.equinox: relax time threshold on performance test (#445177)

kirillrdy e7c8645c 9ac11813

Changed files
+2 -1
pkgs
development
python-modules
equinox
+2 -1
pkgs/development/python-modules/equinox/default.nix
···
substituteInPlace tests/test_while_loop.py \
--replace-fail "speed < 0.1" "speed < 0.5" \
--replace-fail "speed < 0.5" "speed < 1" \
-
--replace-fail "speed < 1" "speed < 20"
+
--replace-fail "speed < 1" "speed < 20" \
+
--replace-fail "speed < 2" "speed < 20"
'';
build-system = [ hatchling ];