2014-03-18 10:33:10 +02:00
|
|
|
[wheel]
|
|
|
|
universal = 1
|
2017-04-08 09:52:18 -07:00
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
omit =
|
|
|
|
*/python?.?/*
|
|
|
|
*/lib-python/?.?/*.py
|
|
|
|
*/lib_pypy/_*.py
|
|
|
|
*/pypy/*
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
exclude_lines =
|
|
|
|
# Have to re-enable the standard pragma
|
|
|
|
pragma: no cover
|
2017-04-09 17:27:51 -07:00
|
|
|
# We want ignore_errors so we don't get NoSource warnings for loading
|
|
|
|
# byte-compiled Hy modules.
|
|
|
|
ignore_errors = True
|
2017-04-26 14:00:11 -07:00
|
|
|
|
|
|
|
[tool:pytest]
|
2018-05-30 10:42:00 -07:00
|
|
|
# Be sure to include Hy test functions with mangled names.
|
|
|
|
python_functions=test_* is_test_* hyx_test_* hyx_is_test_*
|
2018-02-08 22:28:54 -05:00
|
|
|
filterwarnings =
|
|
|
|
once::DeprecationWarning
|
|
|
|
once::PendingDeprecationWarning
|
2019-04-08 15:36:42 -04:00
|
|
|
ignore::SyntaxWarning
|