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 6262 COVERAGE_CORE : sysmon
6363 run : |
6464 if [ "$RUNNER_OS" == "Windows" ]; then
65- pytest -v
65+ pytest -vs -k test_measure_reserved_mem
6666 else
67- pytest -v --cov=cubed --cov-report=term-missing --cov-fail-under=90
67+ pytest -v -k test_measure_reserved_mem
6868 fi
6969 shell : bash
Original file line number Diff line number Diff line change @@ -595,10 +595,10 @@ def test_array_pickle(spec, executor):
595595
596596
597597def test_measure_reserved_mem (executor ):
598- pytest .importorskip ("lithops" )
598+ # pytest.importorskip("lithops")
599599
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")
602602
603603 reserved_memory = cubed .measure_reserved_mem (executor = executor )
604604 assert reserved_memory > 1_000_000 # over 1MB
You can’t perform that action at this time.
0 commit comments