From b1c4f5e1165b86d129b40eb27058828e746e64ba Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 24 Nov 2025 14:40:35 +0100 Subject: [PATCH] setup.cfg - set enabled pytest_cov explicitly (#92896) To support running tests if `PYTEST_DISABLE_PLUGIN_AUTOLOAD` is set (to avoid conflicts with other plugins that might be available on the system). Reviewed-on: https://projects.blender.org/blender/blender-asset-tracer/pulls/92896 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 2f9a115..a344243 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [tool:pytest] -addopts = -v --cov blender_asset_tracer --cov-report term-missing +addopts = -p pytest_cov -v --cov blender_asset_tracer --cov-report term-missing [pep8] max-line-length = 100