File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 62
62
COVERAGE_CORE : sysmon
63
63
run : |
64
64
if [ "$RUNNER_OS" == "Windows" ]; then
65
- pytest -v
65
+ pytest -vs -k test_measure_reserved_mem
66
66
else
67
- pytest -v --cov=cubed --cov-report=term-missing --cov-fail-under=90
67
+ pytest -v -k test_measure_reserved_mem
68
68
fi
69
69
shell : bash
Original file line number Diff line number Diff line change @@ -595,10 +595,10 @@ def test_array_pickle(spec, executor):
595
595
596
596
597
597
def test_measure_reserved_mem (executor ):
598
- pytest .importorskip ("lithops" )
598
+ # pytest.importorskip("lithops")
599
599
600
- if executor .name != "lithops" :
601
- pytest .skip (f"{ executor .name } executor does not support measure_reserved_mem" )
600
+ # if executor.name != "lithops":
601
+ # pytest.skip(f"{executor.name} executor does not support measure_reserved_mem")
602
602
603
603
reserved_memory = cubed .measure_reserved_mem (executor = executor )
604
604
assert reserved_memory > 1_000_000 # over 1MB
You can’t perform that action at this time.
0 commit comments