| Conditions | 5 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | from semantic_version import Version |
||
| 11 | def test_merged_pull_requests(git_repo_with_merge_commit): |
||
| 12 | repository = models.GitRepository() |
||
| 13 | assert 1 == len(repository.pull_requests) |
||
| 14 | assert '111' == repository.pull_requests[0].number |
||
| 15 | assert [] == repository.versions |
||
| 16 | |||
| 17 | assert Version('0.0.0') == repository.latest_version |
||
| 18 |
This can be caused by one of the following:
1. Missing Dependencies
This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.
2. Missing __init__.py files
This error could also result from missing
__init__.pyfiles in your module folders. Make sure that you place one file in each sub-folder.