From 82e88ce666c7680e6d4bc2694b3a1b87d24b90f4 Mon Sep 17 00:00:00 2001 From: qubitnano Date: Sun, 25 Feb 2024 13:52:00 -0500 Subject: [PATCH] python3Packages.influxdb: disable failing test FAILED influxdb/tests/dataframe_client_test.py::TestDataFrameClient::test_write_points_from_dataframe_with_tag_escaped - FutureWarning: 'H' is deprecated and will be removed in a future version, please use 'h' instead. --- 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 991dcb3203140..4dcf74ceb6833 100644 --- a/pkgs/development/python-modules/influxdb/default.nix +++ b/pkgs/development/python-modules/influxdb/default.nix @@ -57,6 +57,8 @@ buildPythonPackage rec { "test_write_points_from_dataframe_with_nan_json" "test_write_points_from_dataframe_with_tags_and_nan_json" "test_write_points_from_dataframe_with_numeric_precision" + # FutureWarning: 'H' is deprecated and will be removed in a future version, please use 'h' instead. + "test_write_points_from_dataframe_with_tag_escaped" # Reponse is not empty but `s = '孝'` and the JSON decoder chokes on that "test_query_with_empty_result" # Pandas API changes cause it to no longer infer datetimes in the expected manner