From 9831280be312288310ebf16a795d37596ef7b266 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Thu, 27 Mar 2025 09:17:34 -0400 Subject: [PATCH] test: disable user agent tests for duckdb-engine --- pkgs/development/python-modules/duckdb-engine/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/duckdb-engine/default.nix b/pkgs/development/python-modules/duckdb-engine/default.nix index b91569d27eb8..612d8d7b89fb 100644 --- a/pkgs/development/python-modules/duckdb-engine/default.nix +++ b/pkgs/development/python-modules/duckdb-engine/default.nix @@ -69,6 +69,9 @@ buildPythonPackage rec { disabledTests = [ # incompatible with duckdb 1.1.1 "test_with_cache" + # these aren't set for some reason + "test_user_agent" + "test_user_agent_with_custom_user_agent" ] ++ lib.optionals (python.pythonVersion == "3.11") [ # incompatible with duckdb 1.1.1 "test_all_types_reflection"