Skip to content

Commit 7e262f6

Browse files
committed
Avoid generating cruft
1 parent 1459e13 commit 7e262f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
matrix:
3737
include:
3838
- { os: ubuntu-latest, python: 311, platform_id: manylinux_x86_64, cibw_archs: x86_64 }
39-
- { os: ubuntu-latest, python: 311, platform_id: manylinux_aarch64, cibw_archs: aarch64 }
39+
#- { os: ubuntu-latest, python: 311, platform_id: manylinux_aarch64, cibw_archs: aarch64 }
4040

4141
steps:
4242
- uses: actions/checkout@v4

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ def build_extension(self, ext):
144144
build_command += ["--", f"-j{os.cpu_count()}"]
145145
self.spawn(build_command)
146146

147-
if self.build_for_coverage:
148-
self.generate_coverage(cwd)
147+
#if self.build_for_coverage:
148+
# self.generate_coverage(cwd)
149149

150150
finally:
151151
os.chdir(str(cwd))

0 commit comments

Comments
 (0)