Load the pyproject.toml file.
()
| 13 | |
| 14 | @pytest.fixture() |
| 15 | def poetry_conf() -> Dict[str, Any]: |
| 16 | """Load the pyproject.toml file.""" |
| 17 | with open(PYPROJECT_TOML) as f: |
| 18 | return toml.load(f)["tool"]["poetry"] |
| 19 | |
| 20 | |
| 21 | def test_required_dependencies(poetry_conf: Mapping[str, Any]) -> None: |