| Conditions | 2 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned |
||
| 28 | def it_displays_help_information(env): |
||
| 29 | cmd = cli(env, '--help') |
||
| 30 | |||
| 31 | expect(cmd.returncode) == 0 |
||
| 32 | expect(cmd.stdout).contains("usage: verchew") |
||
| 33 | |||
| 34 | def it_displays_version_information(env): |
||
| 35 | cmd = cli(env, '--version') |
||
| 39 |
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.