Unverified Commit e29f1762 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

Merge pull request #332821 from pbsds/fix-pytest-cov-stub-migrations-1722970313

treewide: migrate to pytest-cov-stub
parents d6037c70 7465c916
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
  pytest-aiohttp,
  pytest-asyncio,
  pytestCheckHook,
  pytest-cov,
  pytest-cov-stub,
  pythonOlder,
  yarl,
}:
@@ -50,7 +50,7 @@ buildPythonPackage rec {
    aresponses
    pytest-aiohttp
    pytest-asyncio
    pytest-cov
    pytest-cov-stub
    pytestCheckHook
  ];

+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
  requests,
  websocket-client,
  # dependencies for tests
  pytest-cov,
  pytest-cov-stub,
  pytest,
  sure,
  responses,
@@ -35,7 +35,7 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    pytest-cov
    pytest-cov-stub
    pytest
    sure
    responses
+2 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytest-cov,
  pytest-cov-stub,
  pytestCheckHook,
  requests,
}:
@@ -22,7 +22,7 @@ buildPythonPackage rec {
  propagatedBuildInputs = [ requests ];

  nativeCheckInputs = [
    pytest-cov
    pytest-cov-stub
    pytestCheckHook
  ];

+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
  lib,
  pytest,
  pytest-asyncio,
  pytest-cov,
  pytest-cov-stub,
  pytest-rerunfailures,
  pytestCheckHook,
  redis,
@@ -46,7 +46,7 @@ buildPythonPackage rec {
    hypothesis
    pytest
    pytest-asyncio
    pytest-cov
    pytest-cov-stub
    pytest-rerunfailures
    pytestCheckHook
  ];
+4 −6
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
  pykwalify,
  jsonschema,
  pytestCheckHook,
  pytest-cov,
  pytest-cov-stub,
}:

buildPythonPackage rec {
@@ -34,11 +34,9 @@ buildPythonPackage rec {
    jsonschema
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  checkInputs = [
    # addopts uses --no-cov
    pytest-cov
  nativeCheckInputs = [
    pytestCheckHook
    pytest-cov-stub
  ];

  disabledTestPaths = [
Loading