Unverified Commit 8bc61d88 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #309357 from adamcstephens/ydiff/fix

python3Packages.ydiff: remove doc-check from tests due to distutils removal
parents f1edf105 88dc68e8
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
  '';