Skip to content

Commit 182fa20

Browse files
authored
python3.pkgs.jupysql: disable broken tests due to duckdb>=1.1.0 (#352864)
2 parents 5d38be4 + e7998d1 commit 182fa20

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

pkgs/development/python-modules/jupysql/default.nix

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,21 @@ buildPythonPackage rec {
8484
disabledTests = [
8585
# AttributeError: 'DataFrame' object has no attribute 'frame_equal'
8686
"test_resultset_polars_dataframe"
87+
# all of these are broken with later versions of duckdb; see
88+
# https://github.com/ploomber/jupysql/issues/1030
89+
"test_resultset_getitem"
90+
"test_resultset_dict"
91+
"test_resultset_len"
92+
"test_resultset_dicts"
93+
"test_resultset_dataframe"
94+
"test_resultset_csv"
95+
"test_resultset_str"
96+
"test_resultset_repr_html_when_feedback_is_2"
97+
"test_resultset_repr_html_with_reduced_feedback"
98+
"test_invalid_operation_error"
99+
"test_resultset_config_autolimit_dict"
100+
# fails due to strict warnings
101+
"test_calling_legacy_plotting_functions_displays_warning"
87102
];
88103

89104
disabledTestPaths = [

0 commit comments

Comments
 (0)