[CI] more arm64 tests

This commit is contained in:
hakril
2025-01-16 21:34:01 +01:00
parent fd00e97d80
commit 458774f1ac
2 changed files with 11 additions and 3 deletions
-3
View File
@@ -122,9 +122,6 @@ jobs:
- name: Listing python versions availables
run: py -0
- name: Installing pytest
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -m pip install pytest
- name: Printing version
run: py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -VV
+11
View File
@@ -11,6 +11,17 @@ from .pfwtest import *
pytestmark = pytest.mark.usefixtures('check_for_gc_garbage')
def test_print_syswow_state():
import platform
print("")
env = windows.system.environ
print(f"{platform.machine()=}")
print(f"{platform.architecture()=}")
print(f"{windows.system.bitness=}")
print(f"{windows.current_process.bitness=}")
print(f"{windows.current_process.is_wow_64=}")
print(f"{env['PROCESSOR_ARCHITECTURE']=}")
print(f"{env.get('PROCESSOR_ARCHITEW6432')=}")
@process_syswow_only
class TestSyswowCurrentProcess(object):