()
| 17 | |
| 18 | |
| 19 | def test_non_existing_package(): |
| 20 | with pytest.raises(exceptions.NoSuchPackage): |
| 21 | package.PypiPackage.from_cached(f"does_not_exists_{str(uuid.uuid4())}") |
| 22 | |
| 23 | |
| 24 | @responses.activate |
nothing calls this directly
no test coverage detected