(sol_code, stu_code)
| 58 | ], |
| 59 | ) |
| 60 | def test_urlretrieve_in_process(sol_code, stu_code): |
| 61 | # on mac an env var needs to be set: |
| 62 | # OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES |
| 63 | with in_temp_dir(): |
| 64 | chain = setup_state("", "", pec="") |
| 65 | |
| 66 | chain._state.solution_code = sol_code |
| 67 | chain._state.student_code = stu_code |
| 68 | |
| 69 | with verify_sct(True): |
| 70 | chain.run() |
| 71 | |
| 72 | |
| 73 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected