Convenience function to join the temporary directory path with the provided arguments.
(tmpdir, *args)
| 13 | |
| 14 | @pytest.fixture |
| 15 | def p(tmpdir, *args): |
| 16 | """ |
| 17 | Convenience function to join the temporary directory path |
| 18 | with the provided arguments. |
| 19 | """ |
| 20 | return partial(os.path.join, tmpdir) |
| 21 | |
| 22 | |
| 23 | @pytest.fixture(autouse=True) |
no outgoing calls
no test coverage detected