1# [bdist_wheel]
2# universal = 1
3# FIXME universal wheels don't roll well with our 2/3 split code base
4# https://github.com/httplib2/httplib2/pull/29
5
6[coverage:run]
7omit = */test/*
8
9[flake8]
10exclude = *.egg*,.env,.git,.tox,_*,build*,dist*,venv*,python2/,python3/
11ignore = E261,W503
12max-line-length = 121
13
14[tool:pytest]
15minversion = 3.2
16addopts =
17  # --fulltrace
18  # -n auto
19  --cov-config=setup.cfg
20  --cov=httplib2
21  --noconftest
22  --showlocals
23  --strict
24  --tb=short
25  --timeout=17
26  --verbose
27  -ra
28