Test Failed
Pull Request — master (#5)
by Jan
01:40
created

oscap_report.test_pep8   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
this_variable_name_si_long_as_longest_hour_and_PEP8_can_have_problem_with_this = "TEST if PEP8 check work right. I will drop this commit but I want try write some bad code XD"
0 ignored issues
show
Coding Style introduced by
This line is too long as per the coding-style (175/100).

This check looks for lines that are too long. You can specify the maximum line length.

Loading history...
Coding Style Naming introduced by
Constant name "this_variable_name_si_long_as_longest_hour_and_PEP8_can_have_problem_with_this" doesn't conform to UPPER_CASE naming style ('([^\\W\\da-z][^\\Wa-z]*|__.*__)$' pattern)

This check looks for invalid names for a range of different identifiers.

You can set regular expressions to which the identifiers must conform if the defaults do not match your requirements.

If your project includes a Pylint configuration file, the settings contained in that file take precedence.

To find out more about Pylint, please refer to their site.

Loading history...
2
dat = input("INPUT PLS:")       
0 ignored issues
show
Coding Style introduced by
Trailing whitespace
Loading history...
3
if (dat==None and 
0 ignored issues
show
Coding Style introduced by
Trailing whitespace
Loading history...
introduced by
Boolean condition 'dat == None and True' may be simplified to 'dat == None'
Loading history...
introduced by
Comparison 'dat == None' should be 'dat is None'
Loading history...
4
    True):
5
    aa=5
0 ignored issues
show
Coding Style Naming introduced by
Constant name "aa" doesn't conform to UPPER_CASE naming style ('([^\\W\\da-z][^\\Wa-z]*|__.*__)$' pattern)

This check looks for invalid names for a range of different identifiers.

You can set regular expressions to which the identifiers must conform if the defaults do not match your requirements.

If your project includes a Pylint configuration file, the settings contained in that file take precedence.

To find out more about Pylint, please refer to their site.

Loading history...
6
7
print(10+10)
8
9
10
11
12
0 ignored issues
show
coding-style introduced by
Trailing newlines
Loading history...
13