(tmpdir)
| 36 | |
| 37 | @pytest.fixture(scope="function") |
| 38 | def user_script_fp(tmpdir): |
| 39 | script_fp = tmpdir.join("user_arg_test.py") |
| 40 | with open(script_fp, "w") as f: |
| 41 | f.write(user_arg_test_script) |
| 42 | return script_fp |
| 43 | |
| 44 | |
| 45 | @pytest.fixture(scope="function") |
nothing calls this directly
no test coverage detected
searching dependent graphs…