MCPcopy Create free account
hub / github.com/bloomberg/pystack / all_pystack_combinations

Function all_pystack_combinations

tests/utils.py:277–286  ·  view source on GitHub ↗
(corefile=False, native=False)

Source from the content-addressed store, hash-verified

275
276
277def all_pystack_combinations(corefile=False, native=False):
278 combinations = tuple(generate_all_pystack_combinations(corefile, native))
279
280 test_combinations = tuple(
281 (method, blocking, python) for _, method, blocking, python in combinations
282 )
283 ids = tuple(the_id for the_id, *_ in combinations)
284 return pytest.mark.parametrize(
285 "method, blocking, python", test_combinations, ids=ids
286 )
287
288
289ALL_PYTHONS = pytest.mark.parametrize(

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected