From 4c8fbe6bd2b4d52750368cfa8925157bca7e2f69 Mon Sep 17 00:00:00 2001 From: Maximilian Moser <maximilian.moser@tuwien.ac.at> Date: Wed, 9 Nov 2022 16:50:37 +0100 Subject: [PATCH] Move check_manifest configuration to setup.cfg * concentrate the configuration of all calls in one place --- run-tests.sh | 2 +- setup.cfg | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index c7e6b1d..a2b24e7 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,7 +1,7 @@ #!/usr/bin/env sh # -*- coding: utf-8 -*- # -# Copyright (C) 2020 - 2021 TU Wien. +# Copyright (C) 2020-2022 TU Wien. # # Invenio-Utilities-TUW is free software; you can redistribute it and/or # modify it under the terms of the MIT License; see LICENSE file for more diff --git a/setup.cfg b/setup.cfg index 83977fa..e8161f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -93,6 +93,10 @@ extend-ignore = E203,E731 [isort] profile=black +[check-manifest] +ignore = + *-requirements.txt + [tool:pytest] addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_utilities_tuw --cov-report=term-missing testpaths = docs tests invenio_utilities_tuw -- GitLab