From 7a9958f27f2c8ed71d87c8a7bca37c14e1ea8d37 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 28 Feb 2024 15:59:50 +0100 Subject: [PATCH] python311Packages.influxdb: ignore failing test that raises FutureWarning --- pkgs/development/python-modules/influxdb/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/influxdb/default.nix b/pkgs/development/python-modules/influxdb/default.nix index 991dcb320314..94441890c7aa 100644 --- a/pkgs/development/python-modules/influxdb/default.nix +++ b/pkgs/development/python-modules/influxdb/default.nix @@ -62,6 +62,8 @@ buildPythonPackage rec { # Pandas API changes cause it to no longer infer datetimes in the expected manner "test_multiquery_into_dataframe" "test_multiquery_into_dataframe_dropna" + # FutureWarning: 'H' is deprecated and will be removed in a future version, please use 'h' instead. + "test_write_points_from_dataframe_with_tag_escaped" ]; pythonImportsCheck = [ "influxdb" ];