forked from cihologramas/pyoptools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_coding_standards.py
100 lines (90 loc) · 2.1 KB
/
test_coding_standards.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# standard imports
import os
# third-party imports
import pep8
# local imports
import pyoptools
PEP8_ADDITIONAL_IGNORE = ["E501"]
# THIS IS THE LIST OF SHAME!!!!
# If you modify a single one of these files, take the opportunity,
# and clean it!.
# Once it's clean, remove it from this list
EXCLUDE_FILES = [
"zernike.py",
"gs.py",
"calc.py",
"ray_source.py",
"material.py",
"genlenslib.py",
"library.py",
"poly_expansion.py",
"stop.py",
"spherical_lens.py",
"prism.py",
"ideallens.py",
"cube.py",
"compound_lens.py",
"ccd.py",
"frft.py",
"misc.py",
"shell_frame.py",
"wxrayos.py",
"comp_lib.py",
"plotutils.py",
"plot_frame.py",
"oglframe.py",
"logutils.py",
"glwindow.py",
"glplotframe2.py",
"glplotframe.py",
"all.py",
"field.pyx",
"fields.pyx",
"psurfrep.pyx",
"cpsurfrep.pyx",
"triangular.pyx",
"shape.pyx",
"rectangular.pyx",
"polygon.pyx",
"circular.pyx",
"ray.pyx",
"component.pyx",
"system.pyx",
"taylor_poly.pyx",
"surface.pyx",
"spherical.pyx",
"plane_mask.pyx",
"detector.pyx",
"cylindrical.pyx",
"plane.pyx",
"idealpplanes.pyx",
"cylinder.pyx",
"aspherical.pyx",
"idealsurface.pyx",
"aperture.pyx",
"resources.pyx",
"picklable.pyx",
"lsq.pyx",
"cmisc.pyx",
"definitions.pyx",
"plist.pyx",
"Poly2D.pyx",
"idealcomponent.pyx",
"powell_lens.py",
"mirror.py",
"diffraction.py",
"cylindrical_lens.py",
"powell.pyx",
"zemax_import.py",
"ipywidgets.py",
]
def test_pep8_conformance():
dirname = os.path.dirname(pyoptools.__file__)
pep8style = pep8.StyleGuide()
# Extend the number of PEP8 guidelines which are not checked.
pep8style.options.ignore = pep8style.options.ignore + tuple(PEP8_ADDITIONAL_IGNORE)
pep8style.options.exclude.extend(EXCLUDE_FILES)
pep8style.options.filename = ["*.py", "*.pyx"]
result = pep8style.check_files([dirname])
msg = "Found code syntax errors (and warnings)."
assert result.total_errors == 0, msg