(corefile=False, native=False)
| 275 | |
| 276 | |
| 277 | def 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 | |
| 289 | ALL_PYTHONS = pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected