(url, mock_github)
| 31 | ) |
| 32 | @responses.activate |
| 33 | def test_invalid_github_repos(url, mock_github): |
| 34 | mock_github(responses) |
| 35 | with pytest.raises(exceptions.NoSuchRepository): |
| 36 | github.GitHub.from_url(url) |
| 37 | |
| 38 | |
| 39 | @responses.activate |
nothing calls this directly
no test coverage detected