Commit 0e66ce80 authored by Sigmanificient's avatar Sigmanificient
Browse files

python3Packages.pycdio: fix test for fs,read

parent f6664783
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -39,15 +39,18 @@ buildPythonPackage (finalAttrs: {
    libiconv
  ];

  postPatch = ''
    substituteInPlace {data,test}/isofs-m1.cue \
      --replace-fail "ISOFS-M1.BIN" "isofs-m1.bin"
  '';

  nativeCheckInputs = [ pytestCheckHook ];

  enabledTestPaths = [ "test/test-*.py" ];

  disabledTests = [
    # Test are depending on image files that are not there
    "test_fs"
    "test_bincue"
    "test_read"
    "test_cdda"
  ];