Skip to content

Commit fba9401

Browse files
committed
Debugging on windows CI
1 parent e2e0aff commit fba9401

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
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

cubed/tests/test_core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,10 +595,10 @@ def test_array_pickle(spec, executor):
595595

596596

597597
def 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

0 commit comments

Comments
 (0)