forked from pygfx/wgpu-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (26 loc) · 900 Bytes
/
setup.cfg
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
[flake8]
max_line_length = 88
exclude = build,dist,*.egg-info
# E501 line too long
# E203 whitespace before ':'
# F722 syntax error in forward annotation
# F821 undefined name -> we must get rid of this!
# B006 Do not use mutable data structures for argument defaults.
# B007 Loop control variable 'j2' not used within the loop body.
# D docstring checks
extend-ignore = E501, E203, B006, B007, D
per-file-ignores =
tests/test_compute.py: F821,F722
tests/test_gui_glfw.py: F821,F722
tests/test_rs_basics.py: F821,F722
tests/test_rs_render.py: F821,F722
tests/test_rs_render_tex.py: F821,F722
tests/test_rs_compute_tex.py : F821,F722
examples/*.py: F821,F722
[coverage:report]
exclude_lines =
# Remember that these are reg exp
# Have to re-enable the standard pragma, plus a less-ugly flavor
pragma: no cover
no-cover
raise NotImplementedError