We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fork
1 parent 6afdb34 commit e95bb5bCopy full SHA for e95bb5b
tests/unit/_utils/test_system.py
@@ -26,9 +26,6 @@ def test_get_cpu_info_returns_valid_values() -> None:
26
assert 0 <= cpu_info.used_ratio <= 1
27
28
29
-# Suppress the warning because there were no problems with using `fork' in our test environment.
30
-# However, there are serialization issues in other cases.
31
-@pytest.mark.filterwarnings('ignore:This process .* is multi-threaded, use of fork:DeprecationWarning')
32
@pytest.mark.skipif(sys.platform != 'linux', reason='Improved estimation available only on Linux')
33
def test_memory_estimation_does_not_overestimate_due_to_shared_memory() -> None:
34
"""Test that memory usage estimation is not overestimating memory usage by counting shared memory multiple times.
0 commit comments