We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83af73a commit 45b781bCopy full SHA for 45b781b
1 file changed
tests/conftest.py
@@ -44,6 +44,9 @@ def generate_pop_and_exit_fixtures(proc_popers, ids=[], dwCreationFlags=DEFAULT_
44
def pop_and_exit_process(request):
45
proc_poper = request.param
46
proc = proc_poper(dwCreationFlags=dwCreationFlags)
47
+ # Apply manually the xfail marker for a test on x86_on_arm64 for pe64 target (cross-heaven gate)
48
+ if windows.current_process._is_x86_on_arm64 and proc.bitness == 64:
49
+ request.applymarker("xfail") # Cross Heaven gate
50
time.sleep(0.2) # Give time to the process to load :)
51
print("Created {0} ({1}bits) for test".format(proc, proc.bitness))
52
yield weakref.proxy(proc) # provide the fixture value
0 commit comments