File: setup.cfg

package info (click to toggle)
abinit 9.10.4-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 518,712 kB
  • sloc: xml: 877,568; f90: 577,240; python: 80,760; perl: 7,019; ansic: 4,585; sh: 1,925; javascript: 601; fortran: 557; cpp: 454; objc: 323; makefile: 77; csh: 42; pascal: 31
file content (19 lines) | stat: -rw-r--r-- 914 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tool:pytest]
# Don't search in these directories for tests
norecursedirs = scripts/post_processing _build* doxygen_docs tmp-robodoc .ipynb_checkpoints
#-f loop on fail mode
#looponfailroots (pathlist) directories to check for changes

[pycodestyle]
count = True
max-line-length = 130
statistics = True
ignore = E114,E116,E121,E122,E123,E124,E126,E127,E128,E129,E131,E133,E201,E203,E226,E231,E241,E242,E261,E262,E265,E266,E306,E401,E402,E704,W503,W504,W505,E701,E702,E731,E741,W605
exclude= .git, __pycache__, scripts/post_processing, _build*, doxygen_docs, tmp-robodoc
#test_*.py

[flake8]
# max-complexity = 10
max-line-length = 130
exclude= .git, __pycache__, scripts/post_processing, _build*, doxygen_docs, tmp-robodoc
extend_ignore = E114,E116,E121,E122,E123,E124,E126,E127,E128,E129,E131,E133,E201,E203,E226,E231,E241,E242,E261,E262,E265,E266,E306,E401,E402,E704,W503,W504,W505,E701,E702,E731,E741,W605,F841