Conditions | 3 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # pylint: disable=redefined-outer-name,unused-variable,expression-not-assigned |
||
26 | def describe_cli(): |
||
27 | |||
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') |
||
36 | |||
37 | expect(cmd.returncode) == 0 |
||
38 | expect(cmd.stderr).contains("verchew v0.") |
||
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__.py
files in your module folders. Make sure that you place one file in each sub-folder.