danger-warnings 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/Dangerfile +5 -0
- data/README.md +33 -5
- data/lib/warnings/gem_version.rb +1 -1
- data/lib/warnings/{markdown_util.rb → helper/message_util.rb} +31 -7
- data/lib/warnings/helper/severity_util.rb +45 -0
- data/lib/warnings/parser/bandit_parser.rb +2 -8
- data/lib/warnings/parser/parser.rb +23 -15
- data/lib/warnings/parser/parser_factory.rb +5 -1
- data/lib/warnings/parser/pylint_parser.rb +38 -0
- data/lib/warnings/parser/rubocop_parser.rb +77 -0
- data/lib/warnings/plugin.rb +1 -1
- data/lib/warnings/{issue.rb → report/issue.rb} +2 -7
- data/lib/warnings/{reporter.rb → report/reporter.rb} +4 -9
- data/spec/assets/empty.txt +0 -0
- data/spec/assets/pylint.txt +582 -0
- data/spec/assets/rubocop.json +265 -0
- data/spec/assets/rubocop.txt +27 -0
- data/spec/assets/rubocop_multi_offenses.json +142 -0
- data/spec/helper/message_util_spec.rb +108 -0
- data/spec/helper/severity_util_spec.rb +70 -0
- data/spec/parser/bandit_parser_spec.rb +8 -36
- data/spec/parser/parser_factory_spec.rb +24 -12
- data/spec/parser/pylint_parser_spec.rb +57 -0
- data/spec/parser/rubocop_parser_spec.rb +94 -0
- data/spec/{reporter_spec.rb → report/reporter_spec.rb} +42 -2
- data/spec/spec_helper.rb +1 -1
- data/spec/spec_helper/assets.rb +53 -0
- data/spec/warnings_spec.rb +0 -5
- metadata +31 -14
- data/lib/warnings/severity.rb +0 -12
- data/spec/assets/assets.rb +0 -8
- data/spec/markdown_util_spec.rb +0 -65
- data/spec/severity_spec.rb +0 -26
data/lib/warnings/plugin.rb
CHANGED
@@ -5,10 +5,10 @@ module Warnings
|
|
5
5
|
#
|
6
6
|
# @return [String]
|
7
7
|
attr_accessor :file_name
|
8
|
-
# The issue
|
8
|
+
# The issue category the linter tool provides.
|
9
9
|
#
|
10
10
|
# @return [String]
|
11
|
-
attr_accessor :
|
11
|
+
attr_accessor :category
|
12
12
|
# The line this issue targets.
|
13
13
|
#
|
14
14
|
# @return [Integer]
|
@@ -22,10 +22,5 @@ module Warnings
|
|
22
22
|
#
|
23
23
|
# @return [String]
|
24
24
|
attr_accessor :message
|
25
|
-
|
26
|
-
# The name of the issue id.
|
27
|
-
#
|
28
|
-
# @return [String]
|
29
|
-
attr_accessor :name
|
30
25
|
end
|
31
26
|
end
|
@@ -1,6 +1,5 @@
|
|
1
|
-
require_relative 'parser/parser_factory'
|
2
|
-
require_relative '
|
3
|
-
require_relative 'severity'
|
1
|
+
require_relative '../parser/parser_factory'
|
2
|
+
require_relative '../helper/message_util'
|
4
3
|
|
5
4
|
module Warnings
|
6
5
|
# Base reporter class to define attributes and common method to create a report.
|
@@ -124,7 +123,7 @@ module Warnings
|
|
124
123
|
|
125
124
|
def inline_comment
|
126
125
|
@issues.each do |issue|
|
127
|
-
text =
|
126
|
+
text = MessageUtil.inline(issue)
|
128
127
|
if fail_error && high_issue?(issue)
|
129
128
|
@danger.fail(text, line: issue.line, file: issue.file_name)
|
130
129
|
else
|
@@ -133,12 +132,8 @@ module Warnings
|
|
133
132
|
end
|
134
133
|
end
|
135
134
|
|
136
|
-
def inline_text(issue)
|
137
|
-
"#{issue.severity.to_s.capitalize}\n[#{issue.id}-#{issue.name}]\n#{issue.message}"
|
138
|
-
end
|
139
|
-
|
140
135
|
def markdown_comment
|
141
|
-
text =
|
136
|
+
text = MessageUtil.markdown(name, @issues)
|
142
137
|
@danger.markdown(text)
|
143
138
|
@danger.fail(format(ERROR_HIGH_SEVERITY, name)) if fail_error && high_issues?
|
144
139
|
end
|
File without changes
|
@@ -0,0 +1,582 @@
|
|
1
|
+
test_project/__init__.py:1: [F403] 'from test_project import *' used; unable to detect undefined names
|
2
|
+
test_project/__init__.py:1: [F401] 'test_project.*' imported but unused
|
3
|
+
test_project/__init__.py:1: [W292] no newline at end of file
|
4
|
+
test_project/Singleton.py:37: [W292] no newline at end of file
|
5
|
+
test_project/test_project.py:1: [F403] 'from Singleton import *' used; unable to detect undefined names
|
6
|
+
test_project/test_project.py:2: [F401] 'thread' imported but unused
|
7
|
+
test_project/test_project.py:4: [F401] 'sys' imported but unused
|
8
|
+
test_project/test_project.py:4: [F401] 'time' imported but unused
|
9
|
+
test_project/test_project.py:4: [E401] multiple imports on one line
|
10
|
+
test_project/test_project.py:7: [F401] 'multiprocessing.dummy.Pool as ThreadPool' imported but unused
|
11
|
+
test_project/test_project.py:9: [F401] 'os' imported but unused
|
12
|
+
test_project/test_project.py:9: [E401] multiple imports on one line
|
13
|
+
test_project/test_project.py:12: [E302] expected 2 blank lines, found 1
|
14
|
+
test_project/test_project.py:12: [F405] 'Singleton' may be undefined, or defined from star imports: Singleton
|
15
|
+
test_project/test_project.py:14: [W293] blank line contains whitespace
|
16
|
+
test_project/test_project.py:21: [E501] line too long (82 > 79 characters)
|
17
|
+
test_project/test_project.py:24: [E501] line too long (94 > 79 characters)
|
18
|
+
test_project/test_project.py:25: [W293] blank line contains whitespace
|
19
|
+
test_project/test_project.py:27: [E303] too many blank lines (2)
|
20
|
+
test_project/test_project.py:28: [E225] missing whitespace around operator
|
21
|
+
test_project/test_project.py:28: [E211] whitespace before '('
|
22
|
+
test_project/test_project.py:39: [W293] blank line contains whitespace
|
23
|
+
test_project/test_project.py:43: [W293] blank line contains whitespace
|
24
|
+
test_project/test_project.py:48: [E303] too many blank lines (2)
|
25
|
+
test_project/test_project.py:50: [E701] multiple statements on one line (colon)
|
26
|
+
test_project/test_project.py:50: [W291] trailing whitespace
|
27
|
+
test_project/test_project.py:54: [E701] multiple statements on one line (colon)
|
28
|
+
test_project/test_project.py:54: [E231] missing whitespace after ','
|
29
|
+
test_project/test_project.py:54: [E501] line too long (113 > 79 characters)
|
30
|
+
test_project/test_project.py:55: [E701] multiple statements on one line (colon)
|
31
|
+
test_project/test_project.py:55: [E231] missing whitespace after ','
|
32
|
+
test_project/test_project.py:55: [E501] line too long (131 > 79 characters)
|
33
|
+
test_project/test_project.py:56: [E701] multiple statements on one line (colon)
|
34
|
+
test_project/test_project.py:56: [E501] line too long (111 > 79 characters)
|
35
|
+
test_project/test_project.py:57: [E701] multiple statements on one line (colon)
|
36
|
+
test_project/test_project.py:57: [W291] trailing whitespace
|
37
|
+
test_project/test_project.py:58: [E722] do not use bare 'except'
|
38
|
+
test_project/test_project.py:59: [E501] line too long (106 > 79 characters)
|
39
|
+
test_project/test_project.py:66: [E501] line too long (165 > 79 characters)
|
40
|
+
test_project/test_project.py:68: [E501] line too long (125 > 79 characters)
|
41
|
+
test_project/test_project.py:70: [E501] line too long (84 > 79 characters)
|
42
|
+
test_project/test_project.py:74: [W291] trailing whitespace
|
43
|
+
test_project/test_project.py:81: [W293] blank line contains whitespace
|
44
|
+
test_project/test_project.py:82: [W293] blank line contains whitespace
|
45
|
+
test_project/test_project.py:83: [W293] blank line contains whitespace
|
46
|
+
test_project/test_project.py:86: [E303] too many blank lines (5)
|
47
|
+
test_project/test_project.py:91: [W291] trailing whitespace
|
48
|
+
test_project/test_project.py:92: [W291] trailing whitespace
|
49
|
+
test_project/test_project.py:94: [W291] trailing whitespace
|
50
|
+
test_project/test_project.py:102: [E501] line too long (100 > 79 characters)
|
51
|
+
test_project/test_project.py:103: [E111] indentation is not a multiple of four
|
52
|
+
test_project/test_project.py:104: [E111] indentation is not a multiple of four
|
53
|
+
test_project/test_project.py:105: [E111] indentation is not a multiple of four
|
54
|
+
test_project/test_project.py:106: [E111] indentation is not a multiple of four
|
55
|
+
test_project/test_project.py:107: [E111] indentation is not a multiple of four
|
56
|
+
test_project/test_project.py:108: [E111] indentation is not a multiple of four
|
57
|
+
test_project/test_project.py:109: [E111] indentation is not a multiple of four
|
58
|
+
test_project/test_project.py:114: [E402] module level import not at top of file
|
59
|
+
test_project/test_project.py:114: [E305] expected 2 blank lines after class or function definition, found 1
|
60
|
+
test_project/test_project.py:114: [F811] redefinition of unused 'Mode' from line 90
|
61
|
+
test_project/test_project.py:115: [E302] expected 2 blank lines, found 0
|
62
|
+
test_project/test_project.py:115: [E251] unexpected spaces around keyword / parameter equals
|
63
|
+
test_project/test_project.py:115: [E251] unexpected spaces around keyword / parameter equals
|
64
|
+
test_project/test_project.py:115: [E251] unexpected spaces around keyword / parameter equals
|
65
|
+
test_project/test_project.py:115: [E251] unexpected spaces around keyword / parameter equals
|
66
|
+
test_project/test_project.py:117: [E306] expected 1 blank line before a nested definition, found 0
|
67
|
+
test_project/test_project.py:119: [E306] expected 1 blank line before a nested definition, found 0
|
68
|
+
test_project/test_project.py:120: [W291] trailing whitespace
|
69
|
+
test_project/test_project.py:123: [W391] blank line at end of file
|
70
|
+
test_project/tests/IO_performance_testing.py:1: [F403] 'from test_project import *' used; unable to detect undefined names
|
71
|
+
test_project/tests/IO_performance_testing.py:3: [F401] 'numpy' imported but unused
|
72
|
+
test_project/tests/IO_performance_testing.py:8: [E302] expected 2 blank lines, found 1
|
73
|
+
test_project/tests/IO_performance_testing.py:13: [E301] expected 1 blank line, found 0
|
74
|
+
test_project/tests/IO_performance_testing.py:15: [E301] expected 1 blank line, found 0
|
75
|
+
test_project/tests/IO_performance_testing.py:17: [E301] expected 1 blank line, found 0
|
76
|
+
test_project/tests/IO_performance_testing.py:19: [E301] expected 1 blank line, found 0
|
77
|
+
test_project/tests/IO_performance_testing.py:26: [E301] expected 1 blank line, found 0
|
78
|
+
test_project/tests/IO_performance_testing.py:28: [E301] expected 1 blank line, found 0
|
79
|
+
test_project/tests/IO_performance_testing.py:30: [E301] expected 1 blank line, found 0
|
80
|
+
test_project/tests/IO_performance_testing.py:32: [E301] expected 1 blank line, found 0
|
81
|
+
test_project/tests/IO_performance_testing.py:39: [E301] expected 1 blank line, found 0
|
82
|
+
test_project/tests/IO_performance_testing.py:41: [E301] expected 1 blank line, found 0
|
83
|
+
test_project/tests/IO_performance_testing.py:43: [E301] expected 1 blank line, found 0
|
84
|
+
test_project/tests/IO_performance_testing.py:45: [E301] expected 1 blank line, found 0
|
85
|
+
test_project/tests/IO_performance_testing.py:52: [E301] expected 1 blank line, found 0
|
86
|
+
test_project/tests/IO_performance_testing.py:54: [E301] expected 1 blank line, found 0
|
87
|
+
test_project/tests/IO_performance_testing.py:56: [E301] expected 1 blank line, found 0
|
88
|
+
test_project/tests/IO_performance_testing.py:58: [E301] expected 1 blank line, found 0
|
89
|
+
test_project/tests/IO_performance_testing.py:65: [E301] expected 1 blank line, found 0
|
90
|
+
test_project/tests/IO_performance_testing.py:67: [E301] expected 1 blank line, found 0
|
91
|
+
test_project/tests/IO_performance_testing.py:69: [E301] expected 1 blank line, found 0
|
92
|
+
test_project/tests/IO_performance_testing.py:71: [E301] expected 1 blank line, found 0
|
93
|
+
test_project/tests/IO_performance_testing.py:74: [E302] expected 2 blank lines, found 1
|
94
|
+
test_project/tests/IO_performance_testing.py:79: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
95
|
+
test_project/tests/IO_performance_testing.py:85: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
96
|
+
test_project/tests/IO_performance_testing.py:86: [E501] line too long (103 > 79 characters)
|
97
|
+
test_project/tests/IO_performance_testing.py:92: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
98
|
+
test_project/tests/IO_performance_testing.py:93: [E501] line too long (109 > 79 characters)
|
99
|
+
test_project/tests/IO_performance_testing.py:99: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
100
|
+
test_project/tests/IO_performance_testing.py:100: [E501] line too long (107 > 79 characters)
|
101
|
+
test_project/tests/IO_performance_testing.py:106: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
102
|
+
test_project/tests/IO_performance_testing.py:107: [E501] line too long (107 > 79 characters)
|
103
|
+
test_project/tests/IO_performance_testing.py:113: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
104
|
+
test_project/tests/IO_performance_testing.py:114: [E501] line too long (109 > 79 characters)
|
105
|
+
test_project/tests/IO_performance_testing.py:116: [E302] expected 2 blank lines, found 1
|
106
|
+
test_project/tests/IO_performance_testing.py:119: [W293] blank line contains whitespace
|
107
|
+
test_project/tests/IO_performance_testing.py:121: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
108
|
+
test_project/tests/IO_performance_testing.py:123: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
109
|
+
test_project/tests/IO_performance_testing.py:127: [F841] local variable 'data' is assigned to but never used
|
110
|
+
test_project/tests/IO_performance_testing.py:130: [E501] line too long (104 > 79 characters)
|
111
|
+
test_project/tests/IO_performance_testing.py:131: [W293] blank line contains whitespace
|
112
|
+
test_project/tests/IO_performance_testing.py:132: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
113
|
+
test_project/tests/IO_performance_testing.py:132: [E251] unexpected spaces around keyword / parameter equals
|
114
|
+
test_project/tests/IO_performance_testing.py:132: [E251] unexpected spaces around keyword / parameter equals
|
115
|
+
test_project/tests/IO_performance_testing.py:132: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
116
|
+
test_project/tests/IO_performance_testing.py:136: [F841] local variable 'data' is assigned to but never used
|
117
|
+
test_project/tests/IO_performance_testing.py:138: [E501] line too long (110 > 79 characters)
|
118
|
+
test_project/tests/IO_performance_testing.py:140: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
119
|
+
test_project/tests/IO_performance_testing.py:140: [E251] unexpected spaces around keyword / parameter equals
|
120
|
+
test_project/tests/IO_performance_testing.py:140: [E251] unexpected spaces around keyword / parameter equals
|
121
|
+
test_project/tests/IO_performance_testing.py:140: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
122
|
+
test_project/tests/IO_performance_testing.py:140: [E501] line too long (83 > 79 characters)
|
123
|
+
test_project/tests/IO_performance_testing.py:144: [F841] local variable 'data' is assigned to but never used
|
124
|
+
test_project/tests/IO_performance_testing.py:146: [E501] line too long (101 > 79 characters)
|
125
|
+
test_project/tests/IO_performance_testing.py:148: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
126
|
+
test_project/tests/IO_performance_testing.py:148: [E251] unexpected spaces around keyword / parameter equals
|
127
|
+
test_project/tests/IO_performance_testing.py:148: [E251] unexpected spaces around keyword / parameter equals
|
128
|
+
test_project/tests/IO_performance_testing.py:148: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
129
|
+
test_project/tests/IO_performance_testing.py:148: [E501] line too long (83 > 79 characters)
|
130
|
+
test_project/tests/IO_performance_testing.py:152: [F841] local variable 'data' is assigned to but never used
|
131
|
+
test_project/tests/IO_performance_testing.py:154: [E501] line too long (101 > 79 characters)
|
132
|
+
test_project/tests/IO_performance_testing.py:156: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
133
|
+
test_project/tests/IO_performance_testing.py:156: [E251] unexpected spaces around keyword / parameter equals
|
134
|
+
test_project/tests/IO_performance_testing.py:156: [E251] unexpected spaces around keyword / parameter equals
|
135
|
+
test_project/tests/IO_performance_testing.py:156: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
136
|
+
test_project/tests/IO_performance_testing.py:156: [E501] line too long (87 > 79 characters)
|
137
|
+
test_project/tests/IO_performance_testing.py:160: [F841] local variable 'data' is assigned to but never used
|
138
|
+
test_project/tests/IO_performance_testing.py:162: [E501] line too long (103 > 79 characters)
|
139
|
+
test_project/tests/IO_performance_testing.py:164: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
140
|
+
test_project/tests/IO_performance_testing.py:168: [F841] local variable 'data' is assigned to but never used
|
141
|
+
test_project/tests/IO_performance_testing.py:170: [E501] line too long (104 > 79 characters)
|
142
|
+
test_project/tests/IO_performance_testing.py:171: [W293] blank line contains whitespace
|
143
|
+
test_project/tests/IO_performance_testing.py:172: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
144
|
+
test_project/tests/IO_performance_testing.py:172: [E251] unexpected spaces around keyword / parameter equals
|
145
|
+
test_project/tests/IO_performance_testing.py:172: [E251] unexpected spaces around keyword / parameter equals
|
146
|
+
test_project/tests/IO_performance_testing.py:172: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
147
|
+
test_project/tests/IO_performance_testing.py:176: [F841] local variable 'data' is assigned to but never used
|
148
|
+
test_project/tests/IO_performance_testing.py:178: [E501] line too long (110 > 79 characters)
|
149
|
+
test_project/tests/IO_performance_testing.py:180: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
150
|
+
test_project/tests/IO_performance_testing.py:180: [E251] unexpected spaces around keyword / parameter equals
|
151
|
+
test_project/tests/IO_performance_testing.py:180: [E251] unexpected spaces around keyword / parameter equals
|
152
|
+
test_project/tests/IO_performance_testing.py:180: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
153
|
+
test_project/tests/IO_performance_testing.py:180: [E501] line too long (83 > 79 characters)
|
154
|
+
test_project/tests/IO_performance_testing.py:184: [F841] local variable 'data' is assigned to but never used
|
155
|
+
test_project/tests/IO_performance_testing.py:186: [E501] line too long (101 > 79 characters)
|
156
|
+
test_project/tests/IO_performance_testing.py:188: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
157
|
+
test_project/tests/IO_performance_testing.py:188: [E251] unexpected spaces around keyword / parameter equals
|
158
|
+
test_project/tests/IO_performance_testing.py:188: [E251] unexpected spaces around keyword / parameter equals
|
159
|
+
test_project/tests/IO_performance_testing.py:188: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
160
|
+
test_project/tests/IO_performance_testing.py:188: [E501] line too long (83 > 79 characters)
|
161
|
+
test_project/tests/IO_performance_testing.py:192: [F841] local variable 'data' is assigned to but never used
|
162
|
+
test_project/tests/IO_performance_testing.py:194: [E501] line too long (101 > 79 characters)
|
163
|
+
test_project/tests/IO_performance_testing.py:196: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
164
|
+
test_project/tests/IO_performance_testing.py:196: [E251] unexpected spaces around keyword / parameter equals
|
165
|
+
test_project/tests/IO_performance_testing.py:196: [E251] unexpected spaces around keyword / parameter equals
|
166
|
+
test_project/tests/IO_performance_testing.py:196: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
167
|
+
test_project/tests/IO_performance_testing.py:196: [E501] line too long (87 > 79 characters)
|
168
|
+
test_project/tests/IO_performance_testing.py:200: [F841] local variable 'data' is assigned to but never used
|
169
|
+
test_project/tests/IO_performance_testing.py:202: [E501] line too long (104 > 79 characters)
|
170
|
+
test_project/tests/IO_performance_testing.py:204: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
171
|
+
test_project/tests/IO_performance_testing.py:208: [F841] local variable 'data' is assigned to but never used
|
172
|
+
test_project/tests/IO_performance_testing.py:210: [E501] line too long (105 > 79 characters)
|
173
|
+
test_project/tests/IO_performance_testing.py:211: [W293] blank line contains whitespace
|
174
|
+
test_project/tests/IO_performance_testing.py:212: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
175
|
+
test_project/tests/IO_performance_testing.py:212: [E251] unexpected spaces around keyword / parameter equals
|
176
|
+
test_project/tests/IO_performance_testing.py:212: [E251] unexpected spaces around keyword / parameter equals
|
177
|
+
test_project/tests/IO_performance_testing.py:212: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
178
|
+
test_project/tests/IO_performance_testing.py:216: [F841] local variable 'data' is assigned to but never used
|
179
|
+
test_project/tests/IO_performance_testing.py:218: [E501] line too long (111 > 79 characters)
|
180
|
+
test_project/tests/IO_performance_testing.py:220: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
181
|
+
test_project/tests/IO_performance_testing.py:220: [E251] unexpected spaces around keyword / parameter equals
|
182
|
+
test_project/tests/IO_performance_testing.py:220: [E251] unexpected spaces around keyword / parameter equals
|
183
|
+
test_project/tests/IO_performance_testing.py:220: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
184
|
+
test_project/tests/IO_performance_testing.py:220: [E501] line too long (83 > 79 characters)
|
185
|
+
test_project/tests/IO_performance_testing.py:224: [F841] local variable 'data' is assigned to but never used
|
186
|
+
test_project/tests/IO_performance_testing.py:226: [E501] line too long (102 > 79 characters)
|
187
|
+
test_project/tests/IO_performance_testing.py:228: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
188
|
+
test_project/tests/IO_performance_testing.py:228: [E251] unexpected spaces around keyword / parameter equals
|
189
|
+
test_project/tests/IO_performance_testing.py:228: [E251] unexpected spaces around keyword / parameter equals
|
190
|
+
test_project/tests/IO_performance_testing.py:228: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
191
|
+
test_project/tests/IO_performance_testing.py:228: [E501] line too long (83 > 79 characters)
|
192
|
+
test_project/tests/IO_performance_testing.py:232: [F841] local variable 'data' is assigned to but never used
|
193
|
+
test_project/tests/IO_performance_testing.py:234: [E501] line too long (102 > 79 characters)
|
194
|
+
test_project/tests/IO_performance_testing.py:236: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
195
|
+
test_project/tests/IO_performance_testing.py:236: [E251] unexpected spaces around keyword / parameter equals
|
196
|
+
test_project/tests/IO_performance_testing.py:236: [E251] unexpected spaces around keyword / parameter equals
|
197
|
+
test_project/tests/IO_performance_testing.py:236: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
198
|
+
test_project/tests/IO_performance_testing.py:236: [E501] line too long (87 > 79 characters)
|
199
|
+
test_project/tests/IO_performance_testing.py:240: [F841] local variable 'data' is assigned to but never used
|
200
|
+
test_project/tests/IO_performance_testing.py:242: [E501] line too long (104 > 79 characters)
|
201
|
+
test_project/tests/IO_performance_testing.py:255: [E701] multiple statements on one line (colon)
|
202
|
+
test_project/tests/IO_performance_testing.py:256: [E701] multiple statements on one line (colon)
|
203
|
+
test_project/tests/IO_performance_testing.py:256: [E501] line too long (85 > 79 characters)
|
204
|
+
test_project/tests/IO_performance_testing.py:257: [E701] multiple statements on one line (colon)
|
205
|
+
test_project/tests/IO_performance_testing.py:257: [E501] line too long (81 > 79 characters)
|
206
|
+
test_project/tests/IO_performance_testing.py:258: [E701] multiple statements on one line (colon)
|
207
|
+
test_project/tests/IO_performance_testing.py:258: [E501] line too long (81 > 79 characters)
|
208
|
+
test_project/tests/IO_performance_testing.py:259: [E701] multiple statements on one line (colon)
|
209
|
+
test_project/tests/IO_performance_testing.py:259: [E501] line too long (85 > 79 characters)
|
210
|
+
test_project/tests/IO_performance_testing.py:260: [W293] blank line contains whitespace
|
211
|
+
test_project/tests/IO_performance_testing.py:263: [E303] too many blank lines (3)
|
212
|
+
test_project/tests/performance_testing.py:1: [F403] 'from test_project import *' used; unable to detect undefined names
|
213
|
+
test_project/tests/performance_testing.py:6: [E302] expected 2 blank lines, found 1
|
214
|
+
test_project/tests/performance_testing.py:10: [E301] expected 1 blank line, found 0
|
215
|
+
test_project/tests/performance_testing.py:12: [E301] expected 1 blank line, found 0
|
216
|
+
test_project/tests/performance_testing.py:15: [E301] expected 1 blank line, found 0
|
217
|
+
test_project/tests/performance_testing.py:17: [E301] expected 1 blank line, found 0
|
218
|
+
test_project/tests/performance_testing.py:21: [E301] expected 1 blank line, found 0
|
219
|
+
test_project/tests/performance_testing.py:23: [E301] expected 1 blank line, found 0
|
220
|
+
test_project/tests/performance_testing.py:25: [E301] expected 1 blank line, found 0
|
221
|
+
test_project/tests/performance_testing.py:27: [E301] expected 1 blank line, found 0
|
222
|
+
test_project/tests/performance_testing.py:34: [E301] expected 1 blank line, found 0
|
223
|
+
test_project/tests/performance_testing.py:36: [E301] expected 1 blank line, found 0
|
224
|
+
test_project/tests/performance_testing.py:38: [E301] expected 1 blank line, found 0
|
225
|
+
test_project/tests/performance_testing.py:40: [E301] expected 1 blank line, found 0
|
226
|
+
test_project/tests/performance_testing.py:47: [E301] expected 1 blank line, found 0
|
227
|
+
test_project/tests/performance_testing.py:49: [E301] expected 1 blank line, found 0
|
228
|
+
test_project/tests/performance_testing.py:51: [E301] expected 1 blank line, found 0
|
229
|
+
test_project/tests/performance_testing.py:53: [E301] expected 1 blank line, found 0
|
230
|
+
test_project/tests/performance_testing.py:60: [E301] expected 1 blank line, found 0
|
231
|
+
test_project/tests/performance_testing.py:62: [E301] expected 1 blank line, found 0
|
232
|
+
test_project/tests/performance_testing.py:64: [E301] expected 1 blank line, found 0
|
233
|
+
test_project/tests/performance_testing.py:66: [E301] expected 1 blank line, found 0
|
234
|
+
test_project/tests/performance_testing.py:73: [E301] expected 1 blank line, found 0
|
235
|
+
test_project/tests/performance_testing.py:75: [E301] expected 1 blank line, found 0
|
236
|
+
test_project/tests/performance_testing.py:77: [E301] expected 1 blank line, found 0
|
237
|
+
test_project/tests/performance_testing.py:79: [E301] expected 1 blank line, found 0
|
238
|
+
test_project/tests/performance_testing.py:82: [E302] expected 2 blank lines, found 1
|
239
|
+
test_project/tests/performance_testing.py:87: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
240
|
+
test_project/tests/performance_testing.py:93: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
241
|
+
test_project/tests/performance_testing.py:94: [E501] line too long (104 > 79 characters)
|
242
|
+
test_project/tests/performance_testing.py:100: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
243
|
+
test_project/tests/performance_testing.py:101: [E501] line too long (110 > 79 characters)
|
244
|
+
test_project/tests/performance_testing.py:107: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
245
|
+
test_project/tests/performance_testing.py:108: [E501] line too long (108 > 79 characters)
|
246
|
+
test_project/tests/performance_testing.py:114: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
247
|
+
test_project/tests/performance_testing.py:115: [E501] line too long (108 > 79 characters)
|
248
|
+
test_project/tests/performance_testing.py:121: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
249
|
+
test_project/tests/performance_testing.py:122: [E501] line too long (110 > 79 characters)
|
250
|
+
test_project/tests/performance_testing.py:124: [E302] expected 2 blank lines, found 1
|
251
|
+
test_project/tests/performance_testing.py:127: [W293] blank line contains whitespace
|
252
|
+
test_project/tests/performance_testing.py:129: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
253
|
+
test_project/tests/performance_testing.py:131: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
254
|
+
test_project/tests/performance_testing.py:133: [E231] missing whitespace after ','
|
255
|
+
test_project/tests/performance_testing.py:133: [E231] missing whitespace after ','
|
256
|
+
test_project/tests/performance_testing.py:134: [E231] missing whitespace after ','
|
257
|
+
test_project/tests/performance_testing.py:134: [E231] missing whitespace after ','
|
258
|
+
test_project/tests/performance_testing.py:138: [E501] line too long (105 > 79 characters)
|
259
|
+
test_project/tests/performance_testing.py:139: [W293] blank line contains whitespace
|
260
|
+
test_project/tests/performance_testing.py:140: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
261
|
+
test_project/tests/performance_testing.py:140: [E251] unexpected spaces around keyword / parameter equals
|
262
|
+
test_project/tests/performance_testing.py:140: [E251] unexpected spaces around keyword / parameter equals
|
263
|
+
test_project/tests/performance_testing.py:140: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
264
|
+
test_project/tests/performance_testing.py:140: [E501] line too long (80 > 79 characters)
|
265
|
+
test_project/tests/performance_testing.py:142: [E231] missing whitespace after ','
|
266
|
+
test_project/tests/performance_testing.py:142: [E231] missing whitespace after ','
|
267
|
+
test_project/tests/performance_testing.py:143: [E231] missing whitespace after ','
|
268
|
+
test_project/tests/performance_testing.py:143: [E231] missing whitespace after ','
|
269
|
+
test_project/tests/performance_testing.py:147: [E501] line too long (111 > 79 characters)
|
270
|
+
test_project/tests/performance_testing.py:149: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
271
|
+
test_project/tests/performance_testing.py:149: [E251] unexpected spaces around keyword / parameter equals
|
272
|
+
test_project/tests/performance_testing.py:149: [E251] unexpected spaces around keyword / parameter equals
|
273
|
+
test_project/tests/performance_testing.py:149: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
274
|
+
test_project/tests/performance_testing.py:149: [E501] line too long (84 > 79 characters)
|
275
|
+
test_project/tests/performance_testing.py:151: [E231] missing whitespace after ','
|
276
|
+
test_project/tests/performance_testing.py:151: [E231] missing whitespace after ','
|
277
|
+
test_project/tests/performance_testing.py:152: [E231] missing whitespace after ','
|
278
|
+
test_project/tests/performance_testing.py:152: [E231] missing whitespace after ','
|
279
|
+
test_project/tests/performance_testing.py:156: [E501] line too long (102 > 79 characters)
|
280
|
+
test_project/tests/performance_testing.py:158: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
281
|
+
test_project/tests/performance_testing.py:158: [E251] unexpected spaces around keyword / parameter equals
|
282
|
+
test_project/tests/performance_testing.py:158: [E251] unexpected spaces around keyword / parameter equals
|
283
|
+
test_project/tests/performance_testing.py:158: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
284
|
+
test_project/tests/performance_testing.py:158: [E501] line too long (84 > 79 characters)
|
285
|
+
test_project/tests/performance_testing.py:160: [E231] missing whitespace after ','
|
286
|
+
test_project/tests/performance_testing.py:160: [E231] missing whitespace after ','
|
287
|
+
test_project/tests/performance_testing.py:161: [E231] missing whitespace after ','
|
288
|
+
test_project/tests/performance_testing.py:161: [E231] missing whitespace after ','
|
289
|
+
test_project/tests/performance_testing.py:165: [E501] line too long (102 > 79 characters)
|
290
|
+
test_project/tests/performance_testing.py:167: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
291
|
+
test_project/tests/performance_testing.py:167: [E251] unexpected spaces around keyword / parameter equals
|
292
|
+
test_project/tests/performance_testing.py:167: [E251] unexpected spaces around keyword / parameter equals
|
293
|
+
test_project/tests/performance_testing.py:167: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
294
|
+
test_project/tests/performance_testing.py:167: [E501] line too long (88 > 79 characters)
|
295
|
+
test_project/tests/performance_testing.py:169: [E231] missing whitespace after ','
|
296
|
+
test_project/tests/performance_testing.py:169: [E231] missing whitespace after ','
|
297
|
+
test_project/tests/performance_testing.py:170: [E231] missing whitespace after ','
|
298
|
+
test_project/tests/performance_testing.py:170: [E231] missing whitespace after ','
|
299
|
+
test_project/tests/performance_testing.py:174: [E501] line too long (104 > 79 characters)
|
300
|
+
test_project/tests/performance_testing.py:176: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
301
|
+
test_project/tests/performance_testing.py:178: [E231] missing whitespace after ','
|
302
|
+
test_project/tests/performance_testing.py:178: [E231] missing whitespace after ','
|
303
|
+
test_project/tests/performance_testing.py:179: [E231] missing whitespace after ','
|
304
|
+
test_project/tests/performance_testing.py:179: [E231] missing whitespace after ','
|
305
|
+
test_project/tests/performance_testing.py:183: [E501] line too long (105 > 79 characters)
|
306
|
+
test_project/tests/performance_testing.py:184: [W293] blank line contains whitespace
|
307
|
+
test_project/tests/performance_testing.py:185: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
308
|
+
test_project/tests/performance_testing.py:185: [E251] unexpected spaces around keyword / parameter equals
|
309
|
+
test_project/tests/performance_testing.py:185: [E251] unexpected spaces around keyword / parameter equals
|
310
|
+
test_project/tests/performance_testing.py:185: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
311
|
+
test_project/tests/performance_testing.py:185: [E501] line too long (80 > 79 characters)
|
312
|
+
test_project/tests/performance_testing.py:187: [E231] missing whitespace after ','
|
313
|
+
test_project/tests/performance_testing.py:187: [E231] missing whitespace after ','
|
314
|
+
test_project/tests/performance_testing.py:188: [E231] missing whitespace after ','
|
315
|
+
test_project/tests/performance_testing.py:188: [E231] missing whitespace after ','
|
316
|
+
test_project/tests/performance_testing.py:192: [E501] line too long (111 > 79 characters)
|
317
|
+
test_project/tests/performance_testing.py:194: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
318
|
+
test_project/tests/performance_testing.py:194: [E251] unexpected spaces around keyword / parameter equals
|
319
|
+
test_project/tests/performance_testing.py:194: [E251] unexpected spaces around keyword / parameter equals
|
320
|
+
test_project/tests/performance_testing.py:194: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
321
|
+
test_project/tests/performance_testing.py:194: [E501] line too long (84 > 79 characters)
|
322
|
+
test_project/tests/performance_testing.py:196: [E231] missing whitespace after ','
|
323
|
+
test_project/tests/performance_testing.py:196: [E231] missing whitespace after ','
|
324
|
+
test_project/tests/performance_testing.py:197: [E231] missing whitespace after ','
|
325
|
+
test_project/tests/performance_testing.py:197: [E231] missing whitespace after ','
|
326
|
+
test_project/tests/performance_testing.py:201: [E501] line too long (102 > 79 characters)
|
327
|
+
test_project/tests/performance_testing.py:203: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
328
|
+
test_project/tests/performance_testing.py:203: [E251] unexpected spaces around keyword / parameter equals
|
329
|
+
test_project/tests/performance_testing.py:203: [E251] unexpected spaces around keyword / parameter equals
|
330
|
+
test_project/tests/performance_testing.py:203: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
331
|
+
test_project/tests/performance_testing.py:203: [E501] line too long (84 > 79 characters)
|
332
|
+
test_project/tests/performance_testing.py:205: [E231] missing whitespace after ','
|
333
|
+
test_project/tests/performance_testing.py:205: [E231] missing whitespace after ','
|
334
|
+
test_project/tests/performance_testing.py:206: [E231] missing whitespace after ','
|
335
|
+
test_project/tests/performance_testing.py:206: [E231] missing whitespace after ','
|
336
|
+
test_project/tests/performance_testing.py:210: [E501] line too long (102 > 79 characters)
|
337
|
+
test_project/tests/performance_testing.py:212: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
338
|
+
test_project/tests/performance_testing.py:212: [E251] unexpected spaces around keyword / parameter equals
|
339
|
+
test_project/tests/performance_testing.py:212: [E251] unexpected spaces around keyword / parameter equals
|
340
|
+
test_project/tests/performance_testing.py:212: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
341
|
+
test_project/tests/performance_testing.py:212: [E501] line too long (88 > 79 characters)
|
342
|
+
test_project/tests/performance_testing.py:214: [E231] missing whitespace after ','
|
343
|
+
test_project/tests/performance_testing.py:214: [E231] missing whitespace after ','
|
344
|
+
test_project/tests/performance_testing.py:215: [E231] missing whitespace after ','
|
345
|
+
test_project/tests/performance_testing.py:215: [E231] missing whitespace after ','
|
346
|
+
test_project/tests/performance_testing.py:219: [E501] line too long (105 > 79 characters)
|
347
|
+
test_project/tests/performance_testing.py:221: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
348
|
+
test_project/tests/performance_testing.py:223: [E231] missing whitespace after ','
|
349
|
+
test_project/tests/performance_testing.py:223: [E231] missing whitespace after ','
|
350
|
+
test_project/tests/performance_testing.py:224: [E231] missing whitespace after ','
|
351
|
+
test_project/tests/performance_testing.py:224: [E231] missing whitespace after ','
|
352
|
+
test_project/tests/performance_testing.py:228: [E501] line too long (106 > 79 characters)
|
353
|
+
test_project/tests/performance_testing.py:229: [W293] blank line contains whitespace
|
354
|
+
test_project/tests/performance_testing.py:230: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
355
|
+
test_project/tests/performance_testing.py:230: [E251] unexpected spaces around keyword / parameter equals
|
356
|
+
test_project/tests/performance_testing.py:230: [E251] unexpected spaces around keyword / parameter equals
|
357
|
+
test_project/tests/performance_testing.py:230: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
358
|
+
test_project/tests/performance_testing.py:230: [E501] line too long (80 > 79 characters)
|
359
|
+
test_project/tests/performance_testing.py:232: [E231] missing whitespace after ','
|
360
|
+
test_project/tests/performance_testing.py:232: [E231] missing whitespace after ','
|
361
|
+
test_project/tests/performance_testing.py:233: [E231] missing whitespace after ','
|
362
|
+
test_project/tests/performance_testing.py:233: [E231] missing whitespace after ','
|
363
|
+
test_project/tests/performance_testing.py:237: [E501] line too long (112 > 79 characters)
|
364
|
+
test_project/tests/performance_testing.py:239: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
365
|
+
test_project/tests/performance_testing.py:239: [E251] unexpected spaces around keyword / parameter equals
|
366
|
+
test_project/tests/performance_testing.py:239: [E251] unexpected spaces around keyword / parameter equals
|
367
|
+
test_project/tests/performance_testing.py:239: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
368
|
+
test_project/tests/performance_testing.py:239: [E501] line too long (84 > 79 characters)
|
369
|
+
test_project/tests/performance_testing.py:241: [E231] missing whitespace after ','
|
370
|
+
test_project/tests/performance_testing.py:241: [E231] missing whitespace after ','
|
371
|
+
test_project/tests/performance_testing.py:242: [E231] missing whitespace after ','
|
372
|
+
test_project/tests/performance_testing.py:242: [E231] missing whitespace after ','
|
373
|
+
test_project/tests/performance_testing.py:246: [E501] line too long (103 > 79 characters)
|
374
|
+
test_project/tests/performance_testing.py:248: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
375
|
+
test_project/tests/performance_testing.py:248: [E251] unexpected spaces around keyword / parameter equals
|
376
|
+
test_project/tests/performance_testing.py:248: [E251] unexpected spaces around keyword / parameter equals
|
377
|
+
test_project/tests/performance_testing.py:248: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
378
|
+
test_project/tests/performance_testing.py:248: [E501] line too long (84 > 79 characters)
|
379
|
+
test_project/tests/performance_testing.py:250: [E231] missing whitespace after ','
|
380
|
+
test_project/tests/performance_testing.py:250: [E231] missing whitespace after ','
|
381
|
+
test_project/tests/performance_testing.py:251: [E231] missing whitespace after ','
|
382
|
+
test_project/tests/performance_testing.py:251: [E231] missing whitespace after ','
|
383
|
+
test_project/tests/performance_testing.py:255: [E501] line too long (103 > 79 characters)
|
384
|
+
test_project/tests/performance_testing.py:257: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
385
|
+
test_project/tests/performance_testing.py:257: [E251] unexpected spaces around keyword / parameter equals
|
386
|
+
test_project/tests/performance_testing.py:257: [E251] unexpected spaces around keyword / parameter equals
|
387
|
+
test_project/tests/performance_testing.py:257: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
388
|
+
test_project/tests/performance_testing.py:257: [E501] line too long (88 > 79 characters)
|
389
|
+
test_project/tests/performance_testing.py:259: [E231] missing whitespace after ','
|
390
|
+
test_project/tests/performance_testing.py:259: [E231] missing whitespace after ','
|
391
|
+
test_project/tests/performance_testing.py:260: [E231] missing whitespace after ','
|
392
|
+
test_project/tests/performance_testing.py:260: [E231] missing whitespace after ','
|
393
|
+
test_project/tests/performance_testing.py:264: [E501] line too long (105 > 79 characters)
|
394
|
+
test_project/tests/performance_testing.py:277: [E701] multiple statements on one line (colon)
|
395
|
+
test_project/tests/performance_testing.py:278: [E701] multiple statements on one line (colon)
|
396
|
+
test_project/tests/performance_testing.py:278: [E501] line too long (87 > 79 characters)
|
397
|
+
test_project/tests/performance_testing.py:279: [E701] multiple statements on one line (colon)
|
398
|
+
test_project/tests/performance_testing.py:279: [E501] line too long (83 > 79 characters)
|
399
|
+
test_project/tests/performance_testing.py:280: [E701] multiple statements on one line (colon)
|
400
|
+
test_project/tests/performance_testing.py:280: [E501] line too long (83 > 79 characters)
|
401
|
+
test_project/tests/performance_testing.py:281: [E701] multiple statements on one line (colon)
|
402
|
+
test_project/tests/performance_testing.py:281: [E501] line too long (87 > 79 characters)
|
403
|
+
test_project/tests/performance_testing.py:282: [W293] blank line contains whitespace
|
404
|
+
test_project/tests/performance_testing.py:285: [E303] too many blank lines (3)
|
405
|
+
test_project/tests/network_performance_testing.py:1: [F403] 'from test_project import *' used; unable to detect undefined names
|
406
|
+
test_project/tests/network_performance_testing.py:3: [F401] 'numpy' imported but unused
|
407
|
+
test_project/tests/network_performance_testing.py:5: [F401] 'os.getcwd' imported but unused
|
408
|
+
test_project/tests/network_performance_testing.py:6: [F401] 'json' imported but unused
|
409
|
+
test_project/tests/network_performance_testing.py:11: [E303] too many blank lines (3)
|
410
|
+
test_project/tests/network_performance_testing.py:16: [E301] expected 1 blank line, found 0
|
411
|
+
test_project/tests/network_performance_testing.py:18: [E301] expected 1 blank line, found 0
|
412
|
+
test_project/tests/network_performance_testing.py:20: [E301] expected 1 blank line, found 0
|
413
|
+
test_project/tests/network_performance_testing.py:22: [E301] expected 1 blank line, found 0
|
414
|
+
test_project/tests/network_performance_testing.py:29: [E301] expected 1 blank line, found 0
|
415
|
+
test_project/tests/network_performance_testing.py:31: [E301] expected 1 blank line, found 0
|
416
|
+
test_project/tests/network_performance_testing.py:33: [E301] expected 1 blank line, found 0
|
417
|
+
test_project/tests/network_performance_testing.py:35: [E301] expected 1 blank line, found 0
|
418
|
+
test_project/tests/network_performance_testing.py:42: [E301] expected 1 blank line, found 0
|
419
|
+
test_project/tests/network_performance_testing.py:44: [E301] expected 1 blank line, found 0
|
420
|
+
test_project/tests/network_performance_testing.py:46: [E301] expected 1 blank line, found 0
|
421
|
+
test_project/tests/network_performance_testing.py:48: [E301] expected 1 blank line, found 0
|
422
|
+
test_project/tests/network_performance_testing.py:55: [E301] expected 1 blank line, found 0
|
423
|
+
test_project/tests/network_performance_testing.py:57: [E301] expected 1 blank line, found 0
|
424
|
+
test_project/tests/network_performance_testing.py:59: [E301] expected 1 blank line, found 0
|
425
|
+
test_project/tests/network_performance_testing.py:61: [E301] expected 1 blank line, found 0
|
426
|
+
test_project/tests/network_performance_testing.py:68: [E301] expected 1 blank line, found 0
|
427
|
+
test_project/tests/network_performance_testing.py:70: [E301] expected 1 blank line, found 0
|
428
|
+
test_project/tests/network_performance_testing.py:72: [E301] expected 1 blank line, found 0
|
429
|
+
test_project/tests/network_performance_testing.py:74: [E301] expected 1 blank line, found 0
|
430
|
+
test_project/tests/network_performance_testing.py:77: [E302] expected 2 blank lines, found 1
|
431
|
+
test_project/tests/network_performance_testing.py:82: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
432
|
+
test_project/tests/network_performance_testing.py:88: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
433
|
+
test_project/tests/network_performance_testing.py:89: [E501] line too long (108 > 79 characters)
|
434
|
+
test_project/tests/network_performance_testing.py:95: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
435
|
+
test_project/tests/network_performance_testing.py:96: [E501] line too long (114 > 79 characters)
|
436
|
+
test_project/tests/network_performance_testing.py:102: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
437
|
+
test_project/tests/network_performance_testing.py:103: [E501] line too long (112 > 79 characters)
|
438
|
+
test_project/tests/network_performance_testing.py:109: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
439
|
+
test_project/tests/network_performance_testing.py:110: [E501] line too long (112 > 79 characters)
|
440
|
+
test_project/tests/network_performance_testing.py:116: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
441
|
+
test_project/tests/network_performance_testing.py:117: [E501] line too long (114 > 79 characters)
|
442
|
+
test_project/tests/network_performance_testing.py:119: [E302] expected 2 blank lines, found 1
|
443
|
+
test_project/tests/network_performance_testing.py:122: [W293] blank line contains whitespace
|
444
|
+
test_project/tests/network_performance_testing.py:124: [F405] 'PyBus' may be undefined, or defined from star imports: test_project
|
445
|
+
test_project/tests/network_performance_testing.py:126: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
446
|
+
test_project/tests/network_performance_testing.py:128: [E701] multiple statements on one line (colon)
|
447
|
+
test_project/tests/network_performance_testing.py:128: [F841] local variable 'response' is assigned to but never used
|
448
|
+
test_project/tests/network_performance_testing.py:128: [E501] line too long (100 > 79 characters)
|
449
|
+
test_project/tests/network_performance_testing.py:130: [E501] line too long (109 > 79 characters)
|
450
|
+
test_project/tests/network_performance_testing.py:131: [W293] blank line contains whitespace
|
451
|
+
test_project/tests/network_performance_testing.py:132: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
452
|
+
test_project/tests/network_performance_testing.py:132: [E251] unexpected spaces around keyword / parameter equals
|
453
|
+
test_project/tests/network_performance_testing.py:132: [E251] unexpected spaces around keyword / parameter equals
|
454
|
+
test_project/tests/network_performance_testing.py:132: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
455
|
+
test_project/tests/network_performance_testing.py:132: [E501] line too long (84 > 79 characters)
|
456
|
+
test_project/tests/network_performance_testing.py:134: [E701] multiple statements on one line (colon)
|
457
|
+
test_project/tests/network_performance_testing.py:134: [F841] local variable 'response' is assigned to but never used
|
458
|
+
test_project/tests/network_performance_testing.py:134: [E501] line too long (100 > 79 characters)
|
459
|
+
test_project/tests/network_performance_testing.py:136: [E501] line too long (115 > 79 characters)
|
460
|
+
test_project/tests/network_performance_testing.py:138: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
461
|
+
test_project/tests/network_performance_testing.py:138: [E251] unexpected spaces around keyword / parameter equals
|
462
|
+
test_project/tests/network_performance_testing.py:138: [E251] unexpected spaces around keyword / parameter equals
|
463
|
+
test_project/tests/network_performance_testing.py:138: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
464
|
+
test_project/tests/network_performance_testing.py:138: [E501] line too long (88 > 79 characters)
|
465
|
+
test_project/tests/network_performance_testing.py:140: [E701] multiple statements on one line (colon)
|
466
|
+
test_project/tests/network_performance_testing.py:140: [F841] local variable 'response' is assigned to but never used
|
467
|
+
test_project/tests/network_performance_testing.py:140: [E501] line too long (100 > 79 characters)
|
468
|
+
test_project/tests/network_performance_testing.py:142: [E501] line too long (106 > 79 characters)
|
469
|
+
test_project/tests/network_performance_testing.py:144: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
470
|
+
test_project/tests/network_performance_testing.py:144: [E251] unexpected spaces around keyword / parameter equals
|
471
|
+
test_project/tests/network_performance_testing.py:144: [E251] unexpected spaces around keyword / parameter equals
|
472
|
+
test_project/tests/network_performance_testing.py:144: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
473
|
+
test_project/tests/network_performance_testing.py:144: [E501] line too long (88 > 79 characters)
|
474
|
+
test_project/tests/network_performance_testing.py:146: [E701] multiple statements on one line (colon)
|
475
|
+
test_project/tests/network_performance_testing.py:146: [F841] local variable 'response' is assigned to but never used
|
476
|
+
test_project/tests/network_performance_testing.py:146: [E501] line too long (100 > 79 characters)
|
477
|
+
test_project/tests/network_performance_testing.py:148: [E501] line too long (106 > 79 characters)
|
478
|
+
test_project/tests/network_performance_testing.py:150: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
479
|
+
test_project/tests/network_performance_testing.py:150: [E251] unexpected spaces around keyword / parameter equals
|
480
|
+
test_project/tests/network_performance_testing.py:150: [E251] unexpected spaces around keyword / parameter equals
|
481
|
+
test_project/tests/network_performance_testing.py:150: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
482
|
+
test_project/tests/network_performance_testing.py:150: [E501] line too long (92 > 79 characters)
|
483
|
+
test_project/tests/network_performance_testing.py:152: [E701] multiple statements on one line (colon)
|
484
|
+
test_project/tests/network_performance_testing.py:152: [F841] local variable 'response' is assigned to but never used
|
485
|
+
test_project/tests/network_performance_testing.py:152: [E501] line too long (100 > 79 characters)
|
486
|
+
test_project/tests/network_performance_testing.py:154: [E501] line too long (108 > 79 characters)
|
487
|
+
test_project/tests/network_performance_testing.py:156: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
488
|
+
test_project/tests/network_performance_testing.py:158: [E701] multiple statements on one line (colon)
|
489
|
+
test_project/tests/network_performance_testing.py:158: [F841] local variable 'response' is assigned to but never used
|
490
|
+
test_project/tests/network_performance_testing.py:158: [E501] line too long (100 > 79 characters)
|
491
|
+
test_project/tests/network_performance_testing.py:160: [E501] line too long (109 > 79 characters)
|
492
|
+
test_project/tests/network_performance_testing.py:161: [W293] blank line contains whitespace
|
493
|
+
test_project/tests/network_performance_testing.py:162: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
494
|
+
test_project/tests/network_performance_testing.py:162: [E251] unexpected spaces around keyword / parameter equals
|
495
|
+
test_project/tests/network_performance_testing.py:162: [E251] unexpected spaces around keyword / parameter equals
|
496
|
+
test_project/tests/network_performance_testing.py:162: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
497
|
+
test_project/tests/network_performance_testing.py:162: [E501] line too long (84 > 79 characters)
|
498
|
+
test_project/tests/network_performance_testing.py:164: [E701] multiple statements on one line (colon)
|
499
|
+
test_project/tests/network_performance_testing.py:164: [F841] local variable 'response' is assigned to but never used
|
500
|
+
test_project/tests/network_performance_testing.py:164: [E501] line too long (100 > 79 characters)
|
501
|
+
test_project/tests/network_performance_testing.py:166: [E501] line too long (115 > 79 characters)
|
502
|
+
test_project/tests/network_performance_testing.py:168: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
503
|
+
test_project/tests/network_performance_testing.py:168: [E251] unexpected spaces around keyword / parameter equals
|
504
|
+
test_project/tests/network_performance_testing.py:168: [E251] unexpected spaces around keyword / parameter equals
|
505
|
+
test_project/tests/network_performance_testing.py:168: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
506
|
+
test_project/tests/network_performance_testing.py:168: [E501] line too long (88 > 79 characters)
|
507
|
+
test_project/tests/network_performance_testing.py:170: [E701] multiple statements on one line (colon)
|
508
|
+
test_project/tests/network_performance_testing.py:170: [F841] local variable 'response' is assigned to but never used
|
509
|
+
test_project/tests/network_performance_testing.py:170: [E501] line too long (100 > 79 characters)
|
510
|
+
test_project/tests/network_performance_testing.py:172: [E501] line too long (106 > 79 characters)
|
511
|
+
test_project/tests/network_performance_testing.py:174: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
512
|
+
test_project/tests/network_performance_testing.py:174: [E251] unexpected spaces around keyword / parameter equals
|
513
|
+
test_project/tests/network_performance_testing.py:174: [E251] unexpected spaces around keyword / parameter equals
|
514
|
+
test_project/tests/network_performance_testing.py:174: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
515
|
+
test_project/tests/network_performance_testing.py:174: [E501] line too long (88 > 79 characters)
|
516
|
+
test_project/tests/network_performance_testing.py:176: [E701] multiple statements on one line (colon)
|
517
|
+
test_project/tests/network_performance_testing.py:176: [F841] local variable 'response' is assigned to but never used
|
518
|
+
test_project/tests/network_performance_testing.py:176: [E501] line too long (100 > 79 characters)
|
519
|
+
test_project/tests/network_performance_testing.py:178: [E501] line too long (106 > 79 characters)
|
520
|
+
test_project/tests/network_performance_testing.py:180: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
521
|
+
test_project/tests/network_performance_testing.py:180: [E251] unexpected spaces around keyword / parameter equals
|
522
|
+
test_project/tests/network_performance_testing.py:180: [E251] unexpected spaces around keyword / parameter equals
|
523
|
+
test_project/tests/network_performance_testing.py:180: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
524
|
+
test_project/tests/network_performance_testing.py:180: [E501] line too long (92 > 79 characters)
|
525
|
+
test_project/tests/network_performance_testing.py:182: [E701] multiple statements on one line (colon)
|
526
|
+
test_project/tests/network_performance_testing.py:182: [F841] local variable 'response' is assigned to but never used
|
527
|
+
test_project/tests/network_performance_testing.py:182: [E501] line too long (100 > 79 characters)
|
528
|
+
test_project/tests/network_performance_testing.py:184: [E501] line too long (109 > 79 characters)
|
529
|
+
test_project/tests/network_performance_testing.py:186: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
530
|
+
test_project/tests/network_performance_testing.py:188: [E701] multiple statements on one line (colon)
|
531
|
+
test_project/tests/network_performance_testing.py:188: [F841] local variable 'response' is assigned to but never used
|
532
|
+
test_project/tests/network_performance_testing.py:188: [E501] line too long (100 > 79 characters)
|
533
|
+
test_project/tests/network_performance_testing.py:190: [E501] line too long (110 > 79 characters)
|
534
|
+
test_project/tests/network_performance_testing.py:191: [W293] blank line contains whitespace
|
535
|
+
test_project/tests/network_performance_testing.py:192: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
536
|
+
test_project/tests/network_performance_testing.py:192: [E251] unexpected spaces around keyword / parameter equals
|
537
|
+
test_project/tests/network_performance_testing.py:192: [E251] unexpected spaces around keyword / parameter equals
|
538
|
+
test_project/tests/network_performance_testing.py:192: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
539
|
+
test_project/tests/network_performance_testing.py:192: [E501] line too long (84 > 79 characters)
|
540
|
+
test_project/tests/network_performance_testing.py:194: [E701] multiple statements on one line (colon)
|
541
|
+
test_project/tests/network_performance_testing.py:194: [F841] local variable 'response' is assigned to but never used
|
542
|
+
test_project/tests/network_performance_testing.py:194: [E501] line too long (100 > 79 characters)
|
543
|
+
test_project/tests/network_performance_testing.py:196: [E501] line too long (116 > 79 characters)
|
544
|
+
test_project/tests/network_performance_testing.py:198: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
545
|
+
test_project/tests/network_performance_testing.py:198: [E251] unexpected spaces around keyword / parameter equals
|
546
|
+
test_project/tests/network_performance_testing.py:198: [E251] unexpected spaces around keyword / parameter equals
|
547
|
+
test_project/tests/network_performance_testing.py:198: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
548
|
+
test_project/tests/network_performance_testing.py:198: [E501] line too long (88 > 79 characters)
|
549
|
+
test_project/tests/network_performance_testing.py:200: [E701] multiple statements on one line (colon)
|
550
|
+
test_project/tests/network_performance_testing.py:200: [F841] local variable 'response' is assigned to but never used
|
551
|
+
test_project/tests/network_performance_testing.py:200: [E501] line too long (100 > 79 characters)
|
552
|
+
test_project/tests/network_performance_testing.py:202: [E501] line too long (107 > 79 characters)
|
553
|
+
test_project/tests/network_performance_testing.py:204: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
554
|
+
test_project/tests/network_performance_testing.py:204: [E251] unexpected spaces around keyword / parameter equals
|
555
|
+
test_project/tests/network_performance_testing.py:204: [E251] unexpected spaces around keyword / parameter equals
|
556
|
+
test_project/tests/network_performance_testing.py:204: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
557
|
+
test_project/tests/network_performance_testing.py:204: [E501] line too long (88 > 79 characters)
|
558
|
+
test_project/tests/network_performance_testing.py:206: [E701] multiple statements on one line (colon)
|
559
|
+
test_project/tests/network_performance_testing.py:206: [F841] local variable 'response' is assigned to but never used
|
560
|
+
test_project/tests/network_performance_testing.py:206: [E501] line too long (100 > 79 characters)
|
561
|
+
test_project/tests/network_performance_testing.py:208: [E501] line too long (107 > 79 characters)
|
562
|
+
test_project/tests/network_performance_testing.py:210: [F405] 'subscribe' may be undefined, or defined from star imports: test_project
|
563
|
+
test_project/tests/network_performance_testing.py:210: [E251] unexpected spaces around keyword / parameter equals
|
564
|
+
test_project/tests/network_performance_testing.py:210: [E251] unexpected spaces around keyword / parameter equals
|
565
|
+
test_project/tests/network_performance_testing.py:210: [F405] 'Mode' may be undefined, or defined from star imports: test_project
|
566
|
+
test_project/tests/network_performance_testing.py:210: [E501] line too long (92 > 79 characters)
|
567
|
+
test_project/tests/network_performance_testing.py:212: [E701] multiple statements on one line (colon)
|
568
|
+
test_project/tests/network_performance_testing.py:212: [F841] local variable 'response' is assigned to but never used
|
569
|
+
test_project/tests/network_performance_testing.py:212: [E501] line too long (100 > 79 characters)
|
570
|
+
test_project/tests/network_performance_testing.py:214: [E501] line too long (109 > 79 characters)
|
571
|
+
test_project/tests/network_performance_testing.py:227: [E701] multiple statements on one line (colon)
|
572
|
+
test_project/tests/network_performance_testing.py:227: [E501] line too long (81 > 79 characters)
|
573
|
+
test_project/tests/network_performance_testing.py:228: [E701] multiple statements on one line (colon)
|
574
|
+
test_project/tests/network_performance_testing.py:228: [E501] line too long (95 > 79 characters)
|
575
|
+
test_project/tests/network_performance_testing.py:229: [E701] multiple statements on one line (colon)
|
576
|
+
test_project/tests/network_performance_testing.py:229: [E501] line too long (91 > 79 characters)
|
577
|
+
test_project/tests/network_performance_testing.py:230: [E701] multiple statements on one line (colon)
|
578
|
+
test_project/tests/network_performance_testing.py:230: [E501] line too long (91 > 79 characters)
|
579
|
+
test_project/tests/network_performance_testing.py:231: [E701] multiple statements on one line (colon)
|
580
|
+
test_project/tests/network_performance_testing.py:231: [E501] line too long (95 > 79 characters)
|
581
|
+
test_project/tests/network_performance_testing.py:232: [W293] blank line contains whitespace
|
582
|
+
test_project/tests/network_performance_testing.py:235: [E303] too many blank lines (3)
|