Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
test: make Python tests work on M1
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwu1105 committed Mar 4, 2023
1 parent b0f22cb commit ad3db49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def filter_available_qt_dependencies(
deps: list[SupportedQtDependencies],
) -> list[SupportedQtDependencies]:
if platform.system() == "Darwin" and platform.machine() == "arm64":
return [None] + list(filter(lambda d: d in ("PySide2", "PyQt5"), deps))
return [None] + list(filter(lambda d: d not in ("PySide2", "PyQt5"), deps))
return [None] + deps


Expand Down

0 comments on commit ad3db49

Please sign in to comment.