forked from whoosh-community/whoosh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
38 lines (30 loc) · 1.1 KB
/
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
36
37
38
[wheel]
universal = 1
[build_sphinx]
build-dir = docs/build
source-dir = docs/source
[upload_sphinx]
upload-dir = docs/build/html
[sdist]
formats = zip,gztar
[aliases]
push = sdist bdist_wheel upload
pushdocs = build_sphinx upload_sphinx
[tool:pytest]
; --tb= traceback print mode (long/short/line/native/no)
addopts = -rs --tb=native
norecursedirs = .hg .tox _build tmp* env* benchmark stress
minversion = 2.0
python_files = test_*.py
pep8ignore =
*.py E121 E122 E123 E124 E125 E126 E127 E128 # continuation line indentation
*.py E401 # imports on separate lines
*.py W391 # blank line at end of file
test_*.py E501 # Ignore long lines in tests
upload.py ALL # 3rd party (and not in the repo): rietveld upload tool
docs/source/conf.py ALL # sphinx stuff, automatically generated, don't check this
src/whoosh/lang/*.py ALL # 3rd party / crashing py.test with non-ascii stuff
src/whoosh/lang/snowball/*.py ALL # 3rd party
src/whoosh/support/relativedelta.py ALL # 3rd party
src/whoosh/support/charset.py ALL # non-ascii py.test crash
src/whoosh/support/unicode.py ALL # non-ascii py.test crash