Unverified Commit 901fe9ec authored by Artturin's avatar Artturin Committed by GitHub
Browse files

Merge pull request #328813 from kira-bruneau/python3Packages.debugpy

python3Packages.debugpy: disable tests for unmaintained pythons
parents 93d0d593 e43be26e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  stdenv,
  buildPythonPackage,
  pythonOlder,
  pythonAtLeast,
  fetchFromGitHub,
  substituteAll,
  gdb,
@@ -92,6 +93,9 @@ buildPythonPackage rec {
        }
      )'';

  # Disable tests for unmaintained versions of python
  doCheck = pythonAtLeast "3.11";

  nativeCheckInputs = [
    ## Used to run the tests:
    pytestCheckHook