Creates a requirements.txt file.
(plugin_path: Path)
| 49 | |
| 50 | |
| 51 | def _write_requirements(plugin_path: Path): |
| 52 | """Creates a requirements.txt file.""" |
| 53 | with open(plugin_path / "requirements.txt", "w", encoding="utf-8") as f: |
| 54 | f.write("networkx\n") |
| 55 | |
| 56 | |
| 57 | def test_load_plugin_i18n_reads_locale_files(tmp_path: Path): |
no test coverage detected