From 5f96bdc5c1f0e1be04bbffd7b7efa8528579cac7 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Fri, 7 Jun 2024 14:00:55 +0200 Subject: [PATCH] python311Packages.chromadb: disable flaky test --- pkgs/development/python-modules/chromadb/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/chromadb/default.nix b/pkgs/development/python-modules/chromadb/default.nix index ed4c8d541a14..f765aa767db9 100644 --- a/pkgs/development/python-modules/chromadb/default.nix +++ b/pkgs/development/python-modules/chromadb/default.nix @@ -136,6 +136,11 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ''; + disabledTests = [ + # flaky / timing sensitive + "test_fastapi_server_token_authn_allows_when_it_should_allow" + ]; + disabledTestPaths = [ # Tests require network access "chromadb/test/property/test_cross_version_persist.py"