Unverified Commit 88dc68e8 authored by Adam Stephens's avatar Adam Stephens
Browse files

python3Packages.ydiff: remove doc-check from tests due to distutils removal

parent 66ae2791
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, docutils, pygments
{ lib, buildPythonPackage, fetchPypi, pygments
, gitMinimal, mercurial, subversion, patchutils, less
}:

@@ -26,11 +26,11 @@ buildPythonPackage rec {
    patchShebangs tests/*.sh
  '';

  nativeCheckInputs = [ docutils pygments ];
  nativeCheckInputs = [ pygments ];

  checkPhase = ''
    runHook preCheck
    make doc-check reg # We don't want the linter or coverage check.
    make reg # We don't want the linter or coverage check.
    runHook postCheck
  '';