1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Description: Various accommodations so that the PEP 8 tests don't cause
autopkgtests to fail. These include fixing the --exclude argument, adding
more files to the exclude pattern, and ignoring E402, which is bogus; see
https://github.com/PyCQA/pep8/issues/394. I also fixed one legitimate
looking violation.
Author: Barry Warsaw <barry@ubuntu.com>
Bug: https://bugs.launchpad.net/aptdaemon/+bug/1486646
--- a/tests/test_pep8.py
+++ b/tests/test_pep8.py
@@ -30,9 +30,11 @@
def test(self):
"""Check if the source code matches the PEP8 style conventions."""
- subprocess.check_call(["pep8", "--statistics", "--show-source",
- "--show-pep8", "--exclude", "pkenums.py",
- "aptdaemon", "tests"])
+ subprocess.check_call([
+ "pep8", "--statistics", "--show-source",
+ "--show-pep8", "--exclude",
+ "pkenums.py,aptdaemon,tests,debian,doc,.pc,gtk3-demo.py,setup.py",
+ "--ignore=E402"])
if __name__ == "__main__":
--- a/apport/aptdaemon.py
+++ b/apport/aptdaemon.py
@@ -28,6 +28,7 @@
apt_pkg.init()
+
def add_info(report):
"""Collect and append additional information about a crash.
|