diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..2703ac8 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[mutmut] +runner=pytest --hypothesis-profile=dev +simple_output=True diff --git a/tests/conftest.py b/tests/conftest.py index e06d329..c0482a2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: LGPL-2.1-only +# Copyright 2022 Jookia + from hypothesis import settings settings.register_profile("dev", max_examples=100, print_blob=True) diff --git a/tests/test_parse.py b/tests/test_parse.py index 7d878e7..fdbd4af 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: LGPL-2.1-only +# Copyright 2022 Jookia + from hypothesis import given, assume from hypothesis.strategies import ( text, diff --git a/tests/test_parse_regress.py b/tests/test_parse_regress.py index 9657399..650907f 100644 --- a/tests/test_parse_regress.py +++ b/tests/test_parse_regress.py @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: LGPL-2.1-only +# Copyright 2022 Jookia + from src import parse