Skip to content

Commit

Permalink
Dubugging
Browse files Browse the repository at this point in the history
  • Loading branch information
dmurphy18 committed Aug 9, 2024
1 parent 8a31aa5 commit 760f373
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/pytestskipmarkers/utils/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,15 @@ def is_aarch64() -> bool:
"""
if is_darwin():
# Allow for MacOS Arm64 platform returning differently from Linux
return platform.machine().startswith("arm64")
# return platform.machine().startswith("arm64")
dgm_plmstrg = platform.machine()
print(f"DGM is_aarch64 with Darwin True, dgm_plmstrg '{dgm_plmstrg}'", flush=True)
return dgm_plmstrg.startswith("arm64")
else:
return platform.machine().startswith("aarch64")
# return platform.machine().startswith("aarch64")
dgm_plmstrg = platform.machine()
print(f"DSGM is_aarch64 with Darwin False, dgm_plmstrg '{dgm_plmstrg}'", flush=True)
return dgm_plmstrg.startswith("aarch64")


def is_photonos() -> bool:
Expand Down

0 comments on commit 760f373

Please sign in to comment.