From 549586f1f4dbfa884817d814e79fbdacdccf5d1b Mon Sep 17 00:00:00 2001 From: Joachim Ungar Date: Tue, 23 Jul 2024 10:25:33 +0200 Subject: [PATCH] try to skip memory tracker tests to see whether gh action still stalls --- test/test_processing_profilers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_processing_profilers.py b/test/test_processing_profilers.py index 9f66f3e5..686523b7 100644 --- a/test/test_processing_profilers.py +++ b/test/test_processing_profilers.py @@ -12,6 +12,7 @@ from mapchete.processing.profilers.time import MeasuredTime, measure_time +@pytest.mark.skip(reason="tests stall on GitHub action") def test_memory_return_result(raster_4band): @measure_memory() def _decorated(path): @@ -25,6 +26,7 @@ def _decorated(path): assert result.total_allocated > 0 +@pytest.mark.skip(reason="tests stall on GitHub action") def test_memory_not_return_result(raster_4band): @measure_memory(add_to_return=False) def _decorated(path): @@ -34,6 +36,7 @@ def _decorated(path): assert isinstance(retval, ma.MaskedArray) +@pytest.mark.skip(reason="tests stall on GitHub action") def test_memory_context_manager(raster_4band, mp_tmpdir): result_file = mp_tmpdir / "memtracker_result.bin"