We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9d419 commit a34d08cCopy full SHA for a34d08c
tests/util.py
@@ -12,13 +12,13 @@
12
13
def get_windows_safe_factory(**execkwargs):
14
if onWindows():
15
- opts = {'find_default_container': functools.partial(
+ makekwargs = {'find_default_container': functools.partial(
16
force_default_container, windows_default_container_id),
17
- 'use_container': True,
18
- 'default_container': windows_default_container_id}
+ 'use_container': True}
+ execkwargs['default_container': windows_default_container_id]
19
else:
20
opts = {}
21
- return Factory(makekwargs=opts, **execkwargs)
+ return Factory(makekwargs=makekwargs, **execkwargs)
22
23
def force_default_container(default_container_id, builder):
24
return default_container_id
0 commit comments