hy/setup.cfg

25 lines
557 B
INI
Raw Normal View History

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
# 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]
# 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