Skip to content

Commit e2e0aff

Browse files
committed
Debugging on windows CI
1 parent 8ea7186 commit e2e0aff

File tree

10 files changed

+12
-10
lines changed

10 files changed

+12
-10
lines changed

.github/workflows/array-api-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7-
pull_request:
7+
# pull_request:
88
schedule:
99
# Every weekday at 03:19 UTC, see https://crontab.guru/
1010
- cron: "19 3 * * 1-5"

.github/workflows/beam-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7-
pull_request:
7+
# pull_request:
88
workflow_dispatch:
99

1010
concurrency:

.github/workflows/dask-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7-
pull_request:
7+
# pull_request:
88
workflow_dispatch:
99

1010
concurrency:

.github/workflows/jax-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: JAX tests
22

33
on:
4-
pull_request:
4+
# pull_request:
55
schedule:
66
# Every weekday at 03:53 UTC, see https://crontab.guru/
77
- cron: "53 3 * * 1-5"

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7-
pull_request:
7+
# pull_request:
88
workflow_dispatch:
99

1010
concurrency:

.github/workflows/slow-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Slow tests
22

33
on:
4-
pull_request:
4+
# pull_request:
55
schedule:
66
# Every weekday at 03:49 UTC, see https://crontab.guru/
77
- cron: "49 3 * * 1-5"

.github/workflows/tensorstore-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: TensorStore tests
22

33
on:
4-
pull_request:
4+
# pull_request:
55
schedule:
66
# Every weekday at 03:58 UTC, see https://crontab.guru/
77
- cron: "58 3 * * 1-5"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: ["ubuntu-latest", "macos-13", "windows-latest"]
20+
os: ["windows-latest"]
2121
python-version: ["3.10"]
2222
PIP_FLAGS: [""]
2323
include:

.github/workflows/zarr-v3-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7-
pull_request:
7+
# pull_request:
88
workflow_dispatch:
99

1010
concurrency:

cubed/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ def peak_measured_mem() -> int:
117117
if platform.system() == "Windows":
118118
import psutil
119119

120-
return psutil.Process().memory_info().peak_wset
120+
ret = psutil.Process().memory_info().peak_wset
121+
print("peak_measured_mem", type(ret), ret)
122+
return ret
121123

122124
from resource import RUSAGE_SELF, getrusage
123125

0 commit comments

Comments
 (0)