From f9450d32ea2fb69915b77b16bfc5e66f8385c301 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 18 Apr 2022 16:31:28 +0200 Subject: [PATCH] Update pytest-cov to 3.0.0 (#68611) --- requirements_test.txt | 2 +- script/pip_check | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements_test.txt b/requirements_test.txt index 693fea36ca6..3fc0fc141af 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -17,7 +17,7 @@ pylint==2.13.5 pipdeptree==2.2.1 pylint-strict-informational==0.1 pytest-aiohttp==0.3.0 -pytest-cov==2.12.1 +pytest-cov==3.0.0 pytest-freezegun==0.4.2 pytest-socket==0.4.1 pytest-test-groups==1.0.3 diff --git a/script/pip_check b/script/pip_check index 5b69e1569c6..f29ea5a5dd0 100755 --- a/script/pip_check +++ b/script/pip_check @@ -3,7 +3,7 @@ PIP_CACHE=$1 # Number of existing dependency conflicts # Update if a PR resolve one! -DEPENDENCY_CONFLICTS=5 +DEPENDENCY_CONFLICTS=6 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)