(session_kind)
| 188 | |
| 189 | @pytest.mark.parametrize("session_kind", _all_session_kinds) |
| 190 | def test_string(session_kind): |
| 191 | num_workers = 4 |
| 192 | sess = session_kind(num_workers=num_workers) |
| 193 | func: di.DPackedFunc = sess.get_global_func("tests.disco.str") |
| 194 | result: di.DRef = func("hello") |
| 195 | |
| 196 | for i in range(num_workers): |
| 197 | assert result.debug_get_from_remote(i) == "hello_suffix" |
| 198 | |
| 199 | |
| 200 | @pytest.mark.parametrize("session_kind", _all_session_kinds) |
nothing calls this directly
no test coverage detected
searching dependent graphs…