Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable warnings as errors in custreamz #15642

Merged
merged 23 commits into from
May 4, 2024
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
294373d
Enable FutureWarnings/DeprecationWarnings as errors for dask_cudf
mroeschke May 1, 2024
00eb81c
Remove xfail strict true
mroeschke May 1, 2024
8d26336
Merge remote-tracking branch 'upstream/branch-24.06' into test/dask_c…
mroeschke May 1, 2024
45068a1
Adress non query planning builds, adjust FutureWarning
mroeschke May 1, 2024
c0e0bd5
Merge branch 'branch-24.06' into test/dask_cudf/wae
galipremsagar May 1, 2024
9eb4c23
Merge remote-tracking branch 'upstream/branch-24.06' into test/dask_c…
mroeschke May 1, 2024
1aec9ee
Merge branch 'test/dask_cudf/wae' of https://github.com/mroeschke/cud…
mroeschke May 1, 2024
d5c2196
Merge branch 'branch-24.06' into test/dask_cudf/wae
mroeschke May 2, 2024
583e166
Merge remote-tracking branch 'upstream/branch-24.06' into test/dask_c…
mroeschke May 3, 2024
7c962ec
address read_json warning
mroeschke May 3, 2024
1415f62
Enable warnings as errors in custreamz
mroeschke May 3, 2024
77e11d5
Merge branch 'branch-24.06' into test/custreamz/wae
galipremsagar May 3, 2024
3381adc
Remove touch
mroeschke May 3, 2024
de07956
Merge branch 'test/dask_cudf/wae' into test/custreamz/wae
mroeschke May 3, 2024
1a8b8ad
Try to address ResourceWarnings
mroeschke May 3, 2024
e753c9d
create_block_manager_from_blocks comes from not just partd
mroeschke May 3, 2024
409a3bb
Merge remote-tracking branch 'upstream/branch-24.06' into test/dask_c…
mroeschke May 3, 2024
9cd83b5
Merge branch 'test/dask_cudf/wae' into test/custreamz/wae
mroeschke May 3, 2024
f36e2e8
Merge branch 'test/custreamz/wae' of https://github.com/mroeschke/cud…
mroeschke May 3, 2024
14a480a
Merge remote-tracking branch 'upstream/branch-24.06' into test/custre…
mroeschke May 3, 2024
b2ff708
Revert "Try to address ResourceWarnings"
mroeschke May 3, 2024
91b5fe7
Ignore socket warnings
mroeschke May 3, 2024
cf02974
Merge remote-tracking branch 'upstream/branch-24.06' into test/custre…
mroeschke May 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions python/custreamz/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,13 @@ skip = [
"dist",
"__init__.py",
]

[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:unclosed <socket.socket:ResourceWarning",
"ignore:Port .* is already in use.:UserWarning:distributed",
# Should be fixed in the next streamz release
# https://github.com/python-streamz/streamz/commit/2812f1f961dfcb3f17e948d8b12a12472975558e
"ignore:pkg_resources is deprecated as an API:DeprecationWarning:streamz",
]
Loading