| Conditions | 4 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | # pylint: disable=unused-variable,expression-not-assigned |
||
| 9 | def describe_config(): |
||
| 10 | |||
| 11 | @pytest.fixture(autouse=True) |
||
| 12 | def temporary_directory(tmpdir): |
||
| 13 | tmpdir.chdir() |
||
| 14 | |||
| 15 | def describe_generate_example(): |
||
| 16 | |||
| 17 | def it_includes_boundaries_and_filters(): |
||
| 18 | config = Config.generate_example() |
||
| 19 | |||
| 20 | expect(len(config.boundaries)) == 1 |
||
| 21 | expect(len(config.filters.tags)) == 1 |
||
| 22 |
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.