Write the library fixture to a temp file and return the path.
(library, tmp_path)
| 57 | |
| 58 | @pytest.fixture |
| 59 | def library_file(library, tmp_path): |
| 60 | """Write the library fixture to a temp file and return the path.""" |
| 61 | path = tmp_path / "library.ifc" |
| 62 | library.write(str(path)) |
| 63 | return str(path) |