hy/setup.cfg

26 lines
583 B
INI
Raw Permalink Normal View History

2014-03-18 09:33:10 +01:00
[wheel]
universal = 1
2017-04-08 18:52:18 +02: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 23:00:11 +02: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-09 04:28:54 +01:00
filterwarnings =
once::DeprecationWarning
once::PendingDeprecationWarning
ignore::SyntaxWarning