mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
[CI] more arm64 tests
This commit is contained in:
@@ -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,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):
|
||||
|
||||
Reference in New Issue
Block a user